yavsc/Yavsc/Models/haircut/HairTaint.cs
2017-02-11 15:46:26 +01:00

16 lines
No EOL
377 B
C#
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Drawing;
namespace Yavsc.Models.haircut
{
public class HairTaint
{
[Key,DatabaseGenerated(DatabaseGeneratedOption.Identity)]
public long Id { get; set;}
public long Name { get; set; }
public Color Color {get; set;}
}
}