refactoring
This commit is contained in:
parent
30a8ac75ec
commit
8e658d2bb4
21 changed files with 135 additions and 29 deletions
22
Yavsc/Models/haircut/HairPrestation.cs
Normal file
22
Yavsc/Models/haircut/HairPrestation.cs
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace Yavsc.Models.haircut
|
||||
{
|
||||
public class HairPrestation
|
||||
{
|
||||
[Key,DatabaseGenerated(DatabaseGeneratedOption.Identity)]
|
||||
public long Id { get; set;}
|
||||
|
||||
public HairLength Length { get; set; }
|
||||
public HairCutGenders Gender { get; set; }
|
||||
public bool Cut { get; set; }
|
||||
|
||||
public HairDressings Dressing { get; set; }
|
||||
public HairTechnos Tech { get; set; }
|
||||
public bool Shampoo { get; set; }
|
||||
public HairTaint[] Taints { get; set; }
|
||||
public bool Cares { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue