DeviceModel.cs 534 字节
Newer Older
W
wq1234wq 已提交
1 2 3 4 5 6 7 8 9 10
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;

namespace IoTSharp.Data
{
    public class DeviceModel
    {
        [Key]
        public Guid DeviceModelId { get; set; }
麦壳饼's avatar
麦壳饼 已提交
11

W
wq1234wq 已提交
12 13 14 15 16 17 18
        public string ModelName { get; set; }
        public string ModelDesc { get; set; }
        public int ModelStatus { get; set; }
        public DateTime CreateDateTime { get; set; }
        public Guid Creator { get; set; }
        public List<DeviceModelCommand> DeviceModelCommands { get; set; }
    }
麦壳饼's avatar
麦壳饼 已提交
19
}