18 lines
No EOL
397 B
C#
18 lines
No EOL
397 B
C#
using System.ComponentModel.DataAnnotations;
|
||
using System.ComponentModel.DataAnnotations.Schema;
|
||
|
||
|
||
namespace Yavsc.Models.Haircut
|
||
{
|
||
using Drawing;
|
||
public class HairTaint
|
||
{
|
||
[Key,DatabaseGenerated(DatabaseGeneratedOption.Identity)]
|
||
public long Id { get; set;}
|
||
|
||
public string Brand { get; set; }
|
||
|
||
[Required]
|
||
public Color Color {get; set;}
|
||
}
|
||
} |