You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
LOL/Sources/apiLOL/DTO/SkinPageDTO.cs

14 lines
262 B

namespace apiLOL.DTO
{
public class SkinPageDTO
{
public IEnumerable<SkinDTO> Data { get; set; }
public int Index { get; set; }
public int Count { get; set; }
public int TotalCount { get; set; }
}
}