19 lines
482 B
C#
19 lines
482 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CompanyManagment.App.Contracts.EmployeeDocuments
|
|
{
|
|
/// <summary>
|
|
/// برای تایید مدارک در بخش ادمین
|
|
/// </summary>
|
|
public class CheckerDocumentItemOperation
|
|
{
|
|
public long EmployeeDocumentItemId { get; set; }
|
|
public bool IsConfirmed { get; set; }
|
|
public string Message { get; set; } = string.Empty;
|
|
}
|
|
}
|