ScanWarningServiceClient.cs 834 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
using FLY.Thick.FilmCasting.IService;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace FLY.Thick.FilmCasting.Client
{
    public class ScanWarningServiceClient : FObjBase.Reflect.Reflect_SeviceClient, IScanWarningService
    {
        protected override Type InterfaceType => typeof(IScanWarningService);

        public bool Enable { get; set; }
        public int AlarmCnt { get; set; }
        public double AlarmPercent { get; set; }
        public int Mix { get; set; }

        public ScanWarningServiceClient(UInt32 serviceId) : base(serviceId) { }
        public ScanWarningServiceClient(UInt32 serviceId, string connName) : base(serviceId, connName) { }

        public void Apply()
        {
            Call(nameof(Apply));
        }
    }
}