Standalone app - auto migrate

This commit is contained in:
2023-06-23 15:32:59 +02:00
parent 6fecc9bcd4
commit 314edeec40
15 changed files with 149 additions and 200 deletions

View File

@@ -8,11 +8,11 @@ namespace WebAPI.Models
[Key]
public Guid Id { get; set; }
[Required]
public string? Code { get; set; }
public string? Code { get; set; } // number
[Required]
public float Value { get; set; }
public float Value { get; set; } // string
//Description fields
public string? Desc1 { get; set; }
public string? Desc1 { get; set; } // Desc1 => Value1
public string? Desc2 { get; set; }
public string? Desc3 { get; set; }
public string? Desc4 { get; set; }