DevOpsPlanPersonModel.cs 470 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations.Schema;
  4. using System.ComponentModel.DataAnnotations;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace Ropin.Inspection.Model.ViewModel.MTN
  9. {
  10. public class DevOpsPlanPersonModel
  11. {
  12. public string CDevOpsPlanCode { get; set; }
  13. public string CDevOpsBy { get; set; }
  14. public List<string> CDevOpsBys { get; set; }
  15. }
  16. }