Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

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. }