按照软件设计文档开始重构代码01
This commit is contained in:
19
DMS.Application/DTOs/UpdateDeviceDto.cs
Normal file
19
DMS.Application/DTOs/UpdateDeviceDto.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using DMS.Core.Enums;
|
||||
|
||||
namespace DMS.Application.DTOs;
|
||||
|
||||
/// <summary>
|
||||
/// 用于更新设备时传输数据的DTO。
|
||||
/// </summary>
|
||||
public class UpdateDeviceDto
|
||||
{
|
||||
public int Id { get; set; }
|
||||
public string Name { get; set; }
|
||||
public ProtocolType Protocol { get; set; }
|
||||
public string IpAddress { get; set; }
|
||||
public int Port { get; set; }
|
||||
public int Rack { get; set; }
|
||||
public int Slot { get; set; }
|
||||
public string OpcUaServerUrl { get; set; }
|
||||
public bool IsActive { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user