mirror of
https://github.com/claunia/romrepomgr.git
synced 2025-12-16 11:14:45 +00:00
16 lines
574 B
C#
16 lines
574 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace RomRepoMgr.Database.Models;
|
|
|
|
public class RomSetStat
|
|
{
|
|
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; }
|
|
} |