22 lines
605 B
C#
22 lines
605 B
C#
using Microsoft.EntityFrameworkCore;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace BMA.EHR.Command.Service.DTOs.CheckIn
|
|
{
|
|
public class CheckInResultDto
|
|
{
|
|
public Guid? CheckInId { get; set; }
|
|
|
|
public DateTime? CheckInTime { get; set; }
|
|
|
|
public string Description { get; set; } = string.Empty;
|
|
|
|
public string StartTimeMorning { get; set; } = "00:00";
|
|
|
|
public string EndTimeMorning { get; set; } = "00:00";
|
|
|
|
public string StartTimeAfternoon { get; set; } = "00:00";
|
|
|
|
public string EndTimeAfternoon { get; set; } = "00:00";
|
|
}
|
|
}
|