12 lines
297 B
C#
Raw Normal View History

2024-07-01 16:04:10 +08:00
namespace DOAN.Model.System.Dto
2024-05-16 13:30:30 +08:00
{
public class LockUserDto
{
public string Name { get; set; }
public string ClientId { get; set; }
public string ConnnectionId { get; set; }
public string Reason { get; set; }
public int Time { get; set; }
}
}