| 12345678910111213141516171819 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace Diligent.WebAPI.Contracts.DTOs.SelectionProcess
- {
- public class StatusChangeDTO
- {
- [Required]
- public string NewStatus { get; set; }
- [Required]
- public int ProcessId { get; set; }
- public int? SchedulerId { get; set; }
- public DateTime? Appointment { get; set; }
- public string? Comment { get; set; }
- }
- }
|