forked from sim0n00ps/OF-DL
9 lines
249 B
C#
9 lines
249 B
C#
namespace OF_DL.Models.Archived;
|
|
|
|
public class ArchivedCollection
|
|
{
|
|
public List<Archived.Medium> ArchivedPostMedia = new();
|
|
public List<Archived.List> ArchivedPostObjects = new();
|
|
public Dictionary<long, string> ArchivedPosts = new();
|
|
}
|