forked from sim0n00ps/OF-DL
21 lines
572 B
C#
21 lines
572 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace OF_DL.Models.Dtos.Highlights;
|
|
|
|
public class ListItemDto
|
|
{
|
|
[JsonProperty("id")] public long Id { get; set; }
|
|
|
|
[JsonProperty("userId")] public long UserId { get; set; }
|
|
|
|
[JsonProperty("title")] public string Title { get; set; } = "";
|
|
|
|
[JsonProperty("coverStoryId")] public long CoverStoryId { get; set; }
|
|
|
|
[JsonProperty("cover")] public string Cover { get; set; } = "";
|
|
|
|
[JsonProperty("storiesCount")] public int StoriesCount { get; set; }
|
|
|
|
[JsonProperty("createdAt")] public DateTime? CreatedAt { get; set; }
|
|
}
|