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

29
Models/Salon.cs Normal file
View File

@@ -0,0 +1,29 @@
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 Salon
{
[Key]
public int Id { get; set; }
public string Adi { get; set; }
public string Adres { get; set; }
public int IlId { get; set; }
public int Ilce { get; set; }
public string Eposta { get; set; }
public string VergiDairesi { get; set; }
public string VergiNumarasi { get; set; }
public string Telefon { get; set; }
[MaxLength(10), MinLength(10)]
public string CepTel { get; set; }
public string WebAdres { get; set; }
public Il? il { get; set; }
}
}