presence/presence_client/DTO/UserDTO.cs

16 lines
274 B
C#
Raw Normal View History

2025-04-30 01:13:44 +00:00
namespace presence_client.DTO;
public class ClientDeleteUsersRequest
{
public List<Guid> UsersGuid { get; set; } = new();
}
public class UpdateFio
{
public string Fio { get; set; }
}
public class ClientDeleteUsersByGroupId
{
public int GroupId { get; set; }
}