LANCommander/LANCommander.SDK/Models/InfiniteResponse.cs
Pat Hartl 66abc6e59e Implement infinite loading with chat thread
- Chat messages are now loaded based on scroll position
- Read status is now updated and set by last message read
- Reworked script importing by using ScriptProvider
2026-01-11 14:38:24 -06:00

9 lines
No EOL
191 B
C#

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