[FA-27] Bookmark implementation
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
using FictionArchive.Service.Shared.Models;
|
||||
|
||||
namespace FictionArchive.Service.UserNovelDataService.Models.Database;
|
||||
|
||||
public class Bookmark : BaseEntity<int>
|
||||
{
|
||||
public Guid UserId { get; set; }
|
||||
public virtual User User { get; set; } = null!;
|
||||
|
||||
public uint ChapterId { get; set; }
|
||||
public uint NovelId { get; set; }
|
||||
|
||||
public string? Description { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user