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