add create/update times to penalty identifiers

This commit is contained in:
RaidMax
2022-02-23 09:02:01 -06:00
parent a6b56ceded
commit 0d88b6293f
11 changed files with 5086 additions and 8 deletions

View File

@ -10,4 +10,4 @@ namespace Stats.Models
public DateTime CreatedDateTime { get; set; } = DateTime.UtcNow;
public DateTime? UpdatedDateTime { get; set; }
}
}
}

View File

@ -1,9 +1,10 @@
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using Stats.Models;
namespace Data.Models;
public class EFPenaltyIdentifier : SharedEntity
public class EFPenaltyIdentifier : AuditFields
{
[Key]
public int PenaltyIdentifierId { get; set; }