mirror of
https://github.com/Ikatono/ComiServ.git
synced 2025-10-28 20:45:35 -05:00
12 lines
267 B
C#
12 lines
267 B
C#
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace ComiServ.Entities;
|
|
|
|
[PrimaryKey("FileXxhash64")]
|
|
public class Cover
|
|
{
|
|
public long FileXxhash64 { get; set; }
|
|
public string Filename { get; set; } = null!;
|
|
public byte[] CoverFile { get; set; } = null!;
|
|
}
|