forked from sim0n00ps/OF-DL
12 lines
276 B
C#
12 lines
276 B
C#
using Newtonsoft.Json;
|
|
using OF_DL.Models.Dtos.Common;
|
|
|
|
namespace OF_DL.Models.Dtos.Messages;
|
|
|
|
public class InfoDto
|
|
{
|
|
[JsonProperty("source")] public SourceDto Source { get; set; } = new();
|
|
|
|
[JsonProperty("preview")] public PreviewDto Preview { get; set; } = new();
|
|
}
|