16 lines
274 B
C#
16 lines
274 B
C#
|
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; }
|
||
|
}
|