Use enumerations in EF models.

This commit is contained in:
2018-08-06 21:07:07 +01:00
parent b9aca7a804
commit e6378588f3
12 changed files with 1805 additions and 73 deletions

View File

@@ -5,7 +5,7 @@
public int Id { get; set; }
public int CompanyId { get; set; }
public int? Year { get; set; }
public string LogoGuid { get; set; }
public string Guid { get; set; }
public Companies Company { get; set; }
}