按照软件设计文档开始重构代码01
This commit is contained in:
16
DMS.Application/DTOs/VariableTableDto.cs
Normal file
16
DMS.Application/DTOs/VariableTableDto.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using DMS.Core.Enums;
|
||||
|
||||
namespace DMS.Application.DTOs;
|
||||
|
||||
/// <summary>
|
||||
/// 用于在UI上显示变量表基本信息的DTO。
|
||||
/// </summary>
|
||||
public class VariableTableDto
|
||||
{
|
||||
public int Id { get; set; }
|
||||
public string Name { get; set; }
|
||||
public string Description { get; set; }
|
||||
public bool IsActive { get; set; }
|
||||
public int DeviceId { get; set; }
|
||||
public ProtocolType Protocol { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user