13 lines
294 B
C#
13 lines
294 B
C#
using System.Data.SqlTypes;
|
|
|
|
namespace BeautySalonDBModels.Models
|
|
{
|
|
public class Reception
|
|
{
|
|
public int ReceptionId { get; set; }
|
|
public int MasterId { get; set; }
|
|
public int ServiceId { get; set; }
|
|
public DateTime DateReception { get; set; }
|
|
}
|
|
}
|