forked from sim0n00ps/OF-DL
21 lines
619 B
C#
21 lines
619 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace OF_DL.Models.Dtos.Archived;
|
|
|
|
public class CountersDto
|
|
{
|
|
[JsonProperty("audiosCount")] public int? AudiosCount { get; set; }
|
|
|
|
[JsonProperty("photosCount")] public int? PhotosCount { get; set; }
|
|
|
|
[JsonProperty("videosCount")] public int? VideosCount { get; set; }
|
|
|
|
[JsonProperty("mediasCount")] public int? MediasCount { get; set; }
|
|
|
|
[JsonProperty("postsCount")] public int? PostsCount { get; set; }
|
|
|
|
[JsonProperty("streamsCount")] public int? StreamsCount { get; set; }
|
|
|
|
[JsonProperty("archivedPostsCount")] public int? ArchivedPostsCount { get; set; }
|
|
}
|