yavsc/Yavsc/Models/Haircut/HairCutQuery.cs

14 lines
389 B
C#
Raw Normal View History

2017-02-23 03:10:30 +01:00
2017-02-13 01:32:03 +01:00
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using Yavsc.Models.Billing;
namespace Yavsc.Models.Haircut
{
public class HairCutQuery : NominativeServiceCommand
{
[Key(), DatabaseGenerated(DatabaseGeneratedOption.Identity)]
public long Id { get; set; }
HairPrestation [] Prestations { get; set; }
}
}