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

53
Data/Link.cs Normal file
View File

@@ -0,0 +1,53 @@
using System;
using System.Collections.Generic;
namespace SaltMiner.Data;
public partial class Link
{
public string LinkId { get; set; } = null!;
public DateTime Created { get; set; }
public string SubredditId { get; set; } = null!;
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? Domain { get; set; }
public bool? IsSelfPost { get; set; }
public string? LinkFlairCssclass { get; set; }
public string? LinkFlairText { get; set; }
public bool? Locked { get; set; }
public int? CommentCount { get; set; }
public string? SelfText { get; set; }
public string? Thumbnail { get; set; }
public string? Title { get; set; }
public string? Url { get; set; }
public DateTime? Edited { get; set; }
public string? Distinguished { get; set; }
public bool? Stickied { get; set; }
public DateTime? RetrievedOn { get; set; }
}