Add DOSCenter's modification date.

This commit is contained in:
2020-09-06 19:09:35 +01:00
parent 7f24956ddd
commit 9ee547e83e
8 changed files with 745 additions and 180 deletions

View File

@@ -23,6 +23,7 @@
// Copyright © 2020 Natalia Portillo
*******************************************************************************/
using System;
using System.ComponentModel.DataAnnotations;
namespace RomRepoMgr.Database.Models
@@ -36,8 +37,9 @@ namespace RomRepoMgr.Database.Models
[Required]
public virtual Machine Machine { get; set; }
[Required]
public string Name { get; set; }
public ulong FileId { get; set; }
public ulong MachineId { get; set; }
public string Name { get; set; }
public ulong FileId { get; set; }
public ulong MachineId { get; set; }
public DateTime? FileLastModification { get; set; }
}
}