OF-DL/OF DL/Models/Highlights/Highlights.cs

19 lines
482 B
C#

namespace OF_DL.Models.Highlights;
public class Highlights
{
public List<List> list { get; set; }
public bool hasMore { get; set; }
public class List
{
public long id { get; set; }
public long userId { get; set; }
public string title { get; set; }
public long coverStoryId { get; set; }
public string cover { get; set; }
public int storiesCount { get; set; }
public DateTime? createdAt { get; set; }
}
}