Skip to content

Commit

Permalink
Scrape Purchased Tab Menu Option
Browse files Browse the repository at this point in the history
  • Loading branch information
sim0n00ps committed Apr 23, 2024
1 parent 979726e commit 5d2a956
Show file tree
Hide file tree
Showing 5 changed files with 831 additions and 1 deletion.
8 changes: 7 additions & 1 deletion OF DL/Entities/Purchased/Purchased.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using Newtonsoft.Json;
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
Expand Down Expand Up @@ -40,6 +40,11 @@ public class FromUser
public int id { get; set; }
public string _view { get; set; }
}
public class Author
{
public int id { get; set; }
public string _view { get; set; }
}

public class Hls
{
Expand Down Expand Up @@ -77,6 +82,7 @@ public class List
public bool? isCouplePeopleMedia { get; set; }
public object queueId { get; set; }
public FromUser fromUser { get; set; }
public Author author { get; set; }
public bool? isFromQueue { get; set; }
public bool? canUnsendQueue { get; set; }
public int? unsendSecondsQueue { get; set; }
Expand Down
16 changes: 16 additions & 0 deletions OF DL/Entities/Purchased/PurchasedTabCollection.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace OF_DL.Entities.Purchased
{
public class PurchasedTabCollection
{
public long UserId { get; set; }
public string Username { get; set; } = string.Empty;
public PaidPostCollection PaidPosts { get; set; } = new PaidPostCollection();
public PaidMessageCollection PaidMessages { get; set; } = new PaidMessageCollection();
}
}
Loading

0 comments on commit 5d2a956

Please sign in to comment.