42 lines
888 B
C#
42 lines
888 B
C#
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; }
|
|
}
|