19 lines
443 B
C#
19 lines
443 B
C#
namespace OF_DL.Entities.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; }
|
|
}
|
|
}
|
|
}
|