style: change ICollection to List in some Models

This commit is contained in:
cuqmbr 2022-06-19 19:17:00 +03:00
parent 857aebf84e
commit 78780d6762
3 changed files with 4 additions and 4 deletions

View File

@ -26,7 +26,7 @@ public class Ticket
[Required] [Required]
public ICollection<TicketCity> Cities { get; set; } = null!; public List<TicketCity> Cities { get; set; } = null!;
[ForeignKey("User")] [ForeignKey("User")]
public int UserId { get; set; } public int UserId { get; set; }

View File

@ -30,5 +30,5 @@ public class User
public bool IsManager { get; set; } public bool IsManager { get; set; }
public ICollection<Ticket>? Tickets { get; set; } public List<Ticket>? Tickets { get; set; }
} }

View File

@ -7,6 +7,6 @@
}, },
"AllowedHosts": "*", "AllowedHosts": "*",
"ConnectionStrings": { "ConnectionStrings": {
"TicketOfficeContext": "Filename=wwwroot/db/TicketOffice-SQLite.db" "TicketOfficeContext": "Filename=./wwwroot/db/TicketOffice-SQLite.db"
} }
} }