12 lines
365 B
C#
12 lines
365 B
C#
namespace WorkFlow.Application.Contracts.RollCallConfirmedAbsence;
|
|
|
|
public class RollCallConfirmAbsenceViewModel
|
|
{
|
|
public long Id { get; set; }
|
|
public string AbsenceDateFa { get; set; }
|
|
public DateTime AbsenceDate { get; set; }
|
|
public long WorkshopId { get; set; }
|
|
public long EmployeeId { get; set; }
|
|
public long ConfirmedByAccountId { get; set; }
|
|
|
|
} |