12 lines
297 B
C#
Raw Normal View History

2024-12-03 09:25:16 +08:00
namespace DOAN.Model.System.Dto
2024-11-28 13:36:05 +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; }
}
}