LANCommander/LANCommander.SDK/Models/InfiniteResponse.cs

9 lines
191 B
C#
Raw Permalink Normal View History

using System.Collections.Generic;
namespace LANCommander.SDK.Models;
public class InfiniteResponse<T>
{
public IEnumerable<T> Items { get; set; }
public bool HasMore { get; set; }
}