20 lines
627 B
C#
20 lines
627 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace NPP.SmartSchedue.Api.Contracts.Services.Personnel.Output
|
|
{
|
|
public class ExpiringQualificationItemOutput
|
|
{
|
|
public long PersonnelId { get; set; }
|
|
public string PersonnelName { get; set; }
|
|
public string PersonnelCode { get; set; }
|
|
public long QualificationId { get; set; }
|
|
public string QualificationLevel { get; set; }
|
|
public DateTime? ExpiryDate { get; set; }
|
|
public int DaysLeft { get; set; }
|
|
|
|
public string QualificationName { get; set; }
|
|
}
|
|
} |