11 lines
251 B
C#
11 lines
251 B
C#
namespace OF_DL.Models.Entities.Posts;
|
|
|
|
public class PostCollection
|
|
{
|
|
public List<Medium> PostMedia { get; set; } = [];
|
|
|
|
public List<ListItem> PostObjects { get; set; } = [];
|
|
|
|
public Dictionary<long, string> Posts { get; set; } = new();
|
|
}
|