using System.Collections.Generic; namespace Interfaces { public class UserList { public int UserCount { get; set; } public List Users { get; set; } public int PageSize { get; set; } public int PageNumber { get; set; } } }