14 lines
301 B
C#
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>();
|
|
}
|