LANCommander/LANCommander.Server.Data/PaginatedResults.cs

16 lines
338 B
C#
Raw Permalink Normal View History

using LANCommander.Server.Data.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LANCommander.Server.Data
{
2024-12-12 17:35:52 -06:00
public class PaginatedResults<T>
{
public ICollection<T> Results { get; set; }
public int Count { get; set; }
}
}