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

41
Data/Comment.cs Normal file
View File

@@ -0,0 +1,41 @@
using System;
using System.Collections.Generic;
namespace SaltMiner.Data;
public partial class Comment
{
public string CommentId { get; set; } = null!;
public DateTime Created { get; set; }
public string LinkId { get; set; } = null!;
public string SubredditId { get; set; } = null!;
public string? ParentId { get; set; }
public int? Upvotes { get; set; }
public int? Downvotes { get; set; }
public int? Score { get; set; }
public string Author { get; set; } = null!;
public string? AuthorFlairCssclass { get; set; }
public string? AuthorFlairText { get; set; }
public string? ApprovedBy { get; set; }
public string? Body { get; set; }
public string? Distinguished { get; set; }
public int? Controversiality { get; set; }
public int? Gilded { get; set; }
public DateTime? RetrievedOn { get; set; }
}