Added Data

This commit is contained in:
2026-01-07 19:56:17 -05:00
parent 6a1fbeb409
commit 9114382318
7 changed files with 283 additions and 5 deletions

11
Data/Subreddit.cs Normal file
View File

@@ -0,0 +1,11 @@
using System;
using System.Collections.Generic;
namespace SaltMiner.Data;
public partial class Subreddit
{
public string SubredditId { get; set; } = null!;
public string Name { get; set; } = null!;
}