style: change ICollection to List in some Models
This commit is contained in:
parent
857aebf84e
commit
78780d6762
@ -26,7 +26,7 @@ public class Ticket
|
||||
|
||||
|
||||
[Required]
|
||||
public ICollection<TicketCity> Cities { get; set; } = null!;
|
||||
public List<TicketCity> Cities { get; set; } = null!;
|
||||
|
||||
[ForeignKey("User")]
|
||||
public int UserId { get; set; }
|
||||
|
@ -30,5 +30,5 @@ public class User
|
||||
public bool IsManager { get; set; }
|
||||
|
||||
|
||||
public ICollection<Ticket>? Tickets { get; set; }
|
||||
public List<Ticket>? Tickets { get; set; }
|
||||
}
|
@ -7,6 +7,6 @@
|
||||
},
|
||||
"AllowedHosts": "*",
|
||||
"ConnectionStrings": {
|
||||
"TicketOfficeContext": "Filename=wwwroot/db/TicketOffice-SQLite.db"
|
||||
"TicketOfficeContext": "Filename=./wwwroot/db/TicketOffice-SQLite.db"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user