using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DugunSalonu.Models { public class Il { public Il() => salons = new HashSet(); [Key] public int id { get; set; } public string adi { get; set; } public ICollection? salons { get; set; } public ICollection? ilceler { get; set; } } }