forked from sim0n00ps/OF-DL
11 lines
234 B
C#
11 lines
234 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace OF_DL.Models.Dtos.Messages;
|
|
|
|
public class MessagesDto
|
|
{
|
|
[JsonProperty("list")] public List<ListItemDto> List { get; set; } = [];
|
|
|
|
[JsonProperty("hasMore")] public bool HasMore { get; set; }
|
|
}
|