56 lines
2.0 KiB
C#
56 lines
2.0 KiB
C#
namespace RobotApp.Common.Shares.Dtos;
|
|
|
|
#nullable disable
|
|
|
|
public record RobotVDA5050ConfigDto
|
|
{
|
|
public Guid Id { get; set; }
|
|
public string SerialNumber { get; set; }
|
|
public string VDA5050HostServer { get; set; }
|
|
public int VDA5050Port { get; set; }
|
|
public string VDA5050UserName { get; set; }
|
|
public string VDA5050Password { get; set; }
|
|
public string VDA5050Manufacturer { get; set; }
|
|
public string VDA5050Version { get; set; }
|
|
public int VDA5050PublishRepeat { get; set; }
|
|
public bool VDA5050EnablePassword { get; set; }
|
|
public bool VDA5050EnableTls { get; set; }
|
|
public DateTime CreatedAt { get; set; }
|
|
public DateTime UpdatedAt { get; set; }
|
|
public bool IsActive { get; set; }
|
|
public string ConfigName { get; set; }
|
|
public string Description { get; set; }
|
|
}
|
|
|
|
public record UpdateRobotVDA5050ConfigDto
|
|
{
|
|
public string SerialNumber { get; set; }
|
|
public string VDA5050HostServer { get; set; }
|
|
public int VDA5050Port { get; set; }
|
|
public string VDA5050UserName { get; set; }
|
|
public string VDA5050Password { get; set; }
|
|
public string VDA5050Manufacturer { get; set; }
|
|
public string VDA5050Version { get; set; }
|
|
public int VDA5050PublishRepeat { get; set; }
|
|
public bool VDA5050EnablePassword { get; set; }
|
|
public bool VDA5050EnableTls { get; set; }
|
|
public string ConfigName { get; set; }
|
|
public string Description { get; set; }
|
|
}
|
|
|
|
public record CreateRobotVDA5050ConfigDto
|
|
{
|
|
public string SerialNumber { get; set; }
|
|
public string VDA5050HostServer { get; set; }
|
|
public int VDA5050Port { get; set; }
|
|
public string VDA5050UserName { get; set; }
|
|
public string VDA5050Password { get; set; }
|
|
public string VDA5050Manufacturer { get; set; }
|
|
public string VDA5050Version { get; set; }
|
|
public int VDA5050PublishRepeat { get; set; }
|
|
public bool VDA5050EnablePassword { get; set; }
|
|
public bool VDA5050EnableTls { get; set; }
|
|
public string ConfigName { get; set; }
|
|
public string Description { get; set; }
|
|
}
|