forked from sim0n00ps/OF-DL
11 lines
280 B
C#
11 lines
280 B
C#
using static OF_DL.Entities.Messages.Messages;
|
|
|
|
namespace OF_DL.Entities.Purchased;
|
|
|
|
public class PaidPostCollection
|
|
{
|
|
public List<Medium> PaidPostMedia = new();
|
|
public List<Purchased.List> PaidPostObjects = new();
|
|
public Dictionary<long, string> PaidPosts = new();
|
|
}
|