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; } ICollection? salons { get; set; } } }