task01/task01/Context/DayStatus.cs
2025-03-14 17:19:39 +03:00

14 lines
301 B
C#

using System;
using System.Collections.Generic;
namespace task01.Context;
public partial class DayStatus
{
public int Id { get; set; }
public string Day { get; set; } = null!;
public virtual ICollection<EmployeeStatus> EmployeeStatuses { get; set; } = new List<EmployeeStatus>();
}