mirror of
https://github.com/aaru-dps/Aaru.Server.git
synced 2025-12-16 19:24:27 +00:00
14 lines
314 B
C#
14 lines
314 B
C#
namespace Aaru.Server.Database.Models;
|
|
|
|
public class IdHashModel : BaseModel<int>
|
|
{
|
|
public IdHashModel(int id, string hash)
|
|
{
|
|
Id = id;
|
|
Hash = hash;
|
|
}
|
|
|
|
public string Hash { get; set; }
|
|
public string Description { get; set; }
|
|
public int[] Duplicates { get; set; }
|
|
} |