Added Data
This commit is contained in:
41
Data/Comment.cs
Normal file
41
Data/Comment.cs
Normal 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; }
|
||||
}
|
||||
Reference in New Issue
Block a user