Fix machine photo types.

This commit is contained in:
2019-05-28 23:34:05 +01:00
parent c4c5e2b821
commit 593b044506
9 changed files with 10852 additions and 5 deletions

View File

@@ -52,7 +52,7 @@ namespace Cicm.Database.Models
public SceneCaptureType? SceneCaptureType { get; set; }
[DisplayName("Sensing method")]
public SensingMethod? SensingMethod { get; set; }
public string Sharpness { get; set; }
public Sharpness? Sharpness { get; set; }
[DisplayName("Software used")]
public string SoftwareUsed { get; set; }
[DisplayName("Subject distance range")]
@@ -68,5 +68,8 @@ namespace Cicm.Database.Models
public virtual Machine Machine { get; set; }
[Required]
public virtual License License { get; set; }
public int MachineId { get; set; }
public int LicenseId { get; set; }
}
}