- Whitelisted subreddits only

- Filter criteria for posts
- Added subreddit to Submission.cs
- Increased context window
This commit is contained in:
2026-02-28 17:54:03 -05:00
parent a574922178
commit 3d81ef5174
2 changed files with 138 additions and 12 deletions

View File

@@ -5,6 +5,7 @@ public class Submission
Replies = new List<Comments>();
}
public String Author { get; set; }
public String Subreddit { get; set; }
public String Title { get; set; }
public String Body { get; set; }
public String Link { get; set; }