OF-DL/OF DL.Core/Models/Entities/Posts/SinglePostCollection.cs

11 lines
277 B
C#

namespace OF_DL.Models.Entities.Posts;
public class SinglePostCollection
{
public List<Medium> SinglePostMedia { get; set; } = [];
public List<SinglePost> SinglePostObjects { get; set; } = [];
public Dictionary<long, string> SinglePosts { get; set; } = new();
}