2020-09-11 00:42:24 +01:00
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
|
2024-11-09 01:37:59 +00:00
|
|
|
namespace RomRepoMgr.Database.Models;
|
|
|
|
|
|
|
|
|
|
public class RomSetStat
|
2020-09-11 00:42:24 +01:00
|
|
|
{
|
2024-11-09 01:37:59 +00:00
|
|
|
public long TotalMachines { get; set; }
|
|
|
|
|
public long CompleteMachines { get; set; }
|
|
|
|
|
public long IncompleteMachines { get; set; }
|
|
|
|
|
public long TotalRoms { get; set; }
|
|
|
|
|
public long HaveRoms { get; set; }
|
|
|
|
|
public long MissRoms { get; set; }
|
|
|
|
|
public virtual RomSet RomSet { get; set; }
|
|
|
|
|
[Key]
|
|
|
|
|
public long RomSetId { get; set; }
|
2020-09-11 00:42:24 +01:00
|
|
|
}
|