WarningSystem2ServiceClientWithName.cs 753 Bytes
Newer Older
1 2 3 4 5 6 7 8 9
using FLY.OBJComponents.Client;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace FLY.Thick.Base.UI
{
潘栩锋's avatar
潘栩锋 committed
10 11 12 13

    /// <summary>
    /// 报警服务 的带设备名称 版本
    /// </summary>
14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
    public class WarningSystem2ServiceClientWithName : WarningSystem2ServiceClient
    {
        public string DevName { get; private set; }

        public WarningSystem2ServiceClientWithName(UInt32 serviceId, string devName) : base(serviceId)
        {
            DevName = devName;
        }

        public WarningSystem2ServiceClientWithName(UInt32 serviceId, string connName, string devName) : base(serviceId, connName)
        {
            DevName = devName;
        }
    }
}