ddd
This commit is contained in:
23
Models/Il.cs
Normal file
23
Models/Il.cs
Normal 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; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user