il, ilce tablosu eklendi.

This commit is contained in:
2025-08-09 23:14:48 +03:00
parent 4796beac49
commit 2ab4d14a58
12 changed files with 773 additions and 126 deletions

View File

@@ -10,13 +10,11 @@ namespace DugunSalonu.Models
public class Il
{
public Il()
{
salons = new HashSet<Salon>();
}
public Il() => salons = new HashSet<Salon>();
[Key]
public int Id { get; set; }
public string Adi { get; set; }
public int id { get; set; }
public string adi { get; set; }
ICollection<Salon>? salons { get; set; }
}