1234567891011121314151617 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations.Schema;
- using System.ComponentModel.DataAnnotations;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Ropin.Inspection.Model.ViewModel.MTN
- {
- public class DevOpsPlanPersonModel
- {
- public string CDevOpsPlanCode { get; set; }
- public string CDevOpsBy { get; set; }
- public List<string> CDevOpsBys { get; set; }
- }
- }
|