11 lines
282 B
C#
11 lines
282 B
C#
namespace OF_DL.Models.Entities.Archived;
|
|
|
|
public class ArchivedCollection
|
|
{
|
|
public List<Medium> ArchivedPostMedia { get; set; } = [];
|
|
|
|
public List<ListItem> ArchivedPostObjects { get; set; } = [];
|
|
|
|
public Dictionary<long, string> ArchivedPosts { get; set; } = new();
|
|
}
|