DeviceTypeEntity.cs
403 Bytes
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HHWCS.Model
{
public class DeviceTypeEntity
{
public int Id { get; set; }
public string Code { get; set; }
public string Name { get; set; }
public string Description { get; set; }
public bool Enable { get; set; }
}
}