12 lines
297 B
C#
Raw Normal View History

2026-01-10 13:47:54 +08:00
namespace RIZO.Model.System.Dto
{
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; }
}
}