選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

StatusChangeDTO.cs 496B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Diligent.WebAPI.Contracts.DTOs.SelectionProcess
  7. {
  8. public class StatusChangeDTO
  9. {
  10. [Required]
  11. public string NewStatus { get; set; }
  12. [Required]
  13. public int ProcessId { get; set; }
  14. public int? SchedulerId { get; set; }
  15. public DateTime? Appointment { get; set; }
  16. public string? Comment { get; set; }
  17. }
  18. }