54 lines
1.1 KiB
C#
54 lines
1.1 KiB
C#
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; }
|
|
}
|