Основные reponses

This commit is contained in:
Mikhail Trubnikov
2023-09-19 16:55:56 +10:00
parent a8c015ce7b
commit 9dc5dc5c3e
8 changed files with 99 additions and 0 deletions

View File

@@ -9,11 +9,15 @@ namespace PARR.DAL.Models
{
[Key]
public Guid Id { get; set; }
public DateTimeOffset DateCreated { get; set; }
public DateTimeOffset? DateModified { get; set; }
public required string Name { get; set; }
public Guid ApplicationTypeId { get; set; }
[ForeignKey(nameof(ApplicationTypeId))]
public ApplicationType? ApplicationType { get; set; }