10 lines
307 B
C#
10 lines
307 B
C#
namespace Brizco.Domain.Entities;
|
|
|
|
public class Shift : ApiEntity
|
|
{
|
|
public string Name { get; set; } = string.Empty;
|
|
public DayOfWeek DayOfWeek { get; set; }
|
|
public string Detail { get; set; } = string.Empty;
|
|
public TimeSpan StartAt { get; set; }
|
|
public TimeSpan EndAt { get; set; }
|
|
} |