DeviceAddressEntity.cs 554 Bytes
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace HHWCS.Model
{
    public class DeviceAddressEntity
    {
        public int Id { get; set; }

        public int? DeviceId { get; set; }

        public int? DevicePropId { get; set; }

        public string DevicePropCode { get; set; }

        public int ServerHandle { get; set; }

        public string Address { get; set; }

        public string value { get; set; }

        public bool Enable { get; set; }


    }
}