forked from sim0n00ps/OF-DL
10 lines
334 B
C#
10 lines
334 B
C#
namespace OF_DL.Entities.Post
|
|
{
|
|
public class SinglePostCollection
|
|
{
|
|
public Dictionary<long, string> SinglePosts = new Dictionary<long, string>();
|
|
public List<SinglePost> SinglePostObjects = new List<SinglePost>();
|
|
public List<SinglePost.Medium> SinglePostMedia = new List<SinglePost.Medium>();
|
|
}
|
|
}
|