This commit is contained in:
2025-08-08 12:31:51 +03:00
parent 3301e17f22
commit 4796beac49
29 changed files with 2369 additions and 77 deletions

23
Models/Il.cs Normal file
View File

@@ -0,0 +1,23 @@
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<Salon>();
}
[Key]
public int Id { get; set; }
public string Adi { get; set; }
ICollection<Salon>? salons { get; set; }
}
}