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