10 lines
220 B
C#
10 lines
220 B
C#
|
using System.Collections.Generic;
|
||
|
|
||
|
namespace gswi.Model.DTOs
|
||
|
{
|
||
|
public class GetFilteredAuthUsersResultDTO
|
||
|
{
|
||
|
public List<AuthUserDTO> Users { get; set; }
|
||
|
public int TotalCount { get; set; }
|
||
|
}
|
||
|
}
|