Files
WebNovelPortal/Treestar.Shared/Models/DBDomain/UserNovel.cs

14 lines
343 B
C#

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