11 lines
197 B
C#
11 lines
197 B
C#
namespace OF_DL.Models.Entities.Posts;
|
|
|
|
public class Post
|
|
{
|
|
public List<ListItem> List { get; set; } = [];
|
|
|
|
public bool HasMore { get; set; }
|
|
|
|
public string? TailMarker { get; set; }
|
|
}
|