Files
WebNovelPortal/Treestar.Shared/Models/DBDomain/UserNovel.cs
littlefoot e4529e11c0
All checks were successful
continuous-integration/drone/push Build is passing
Fixed dockerfiles and fixed chapter upserts
2022-07-17 10:16:32 -04:00

14 lines
343 B
C#

using Newtonsoft.Json;
namespace Treestar.Shared.Models.DBDomain
{
public class UserNovel
{
public int UserId { get; set; }
public string NovelUrl { get; set; }
public Novel Novel { get; set; }
[JsonIgnore]
public User User { get; set; }
public int LastChapterRead { get; set; }
}
}