22 lines
694 B
C#
22 lines
694 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CompanyManagment.App.Contracts.Workshop;
|
|
|
|
public class AlarmViewModel
|
|
{
|
|
public string PersonnelCodeZeroCheck { get; set; }
|
|
public string JobIdZeroCheck { get; set; }
|
|
public string LeftWorkExistCheck { get; set; }
|
|
public string ContractExistCheck { get; set; }
|
|
public string DateValidCheck { get; set; }
|
|
public string EmployeeName { get; set; }
|
|
public string WorkingHoursCheck { get; set; }
|
|
public bool LeftValidForEndMonth { get; set; }
|
|
public bool LeftValid { get; set; }
|
|
public string EmployeeWarning { get; set; }
|
|
|
|
} |