9 lines
211 B
C#
9 lines
211 B
C#
namespace OF_DL.Entities.Post;
|
|
|
|
public class PostCollection
|
|
{
|
|
public List<Post.Medium> PostMedia = new();
|
|
public List<Post.List> PostObjects = new();
|
|
public Dictionary<long, string> Posts = new();
|
|
}
|