- 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
9 lines
No EOL
191 B
C#
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; }
|
|
} |