TispSpotContentUpdateViewModel.cs 620 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Ropin.Inspection.Model.ViewModel
  7. {
  8. public class TispSpotContentUpdateViewModel
  9. {
  10. //public Guid C_ContentCode { get; set; }
  11. //public Guid C_SpotCode { get; set; }
  12. public string C_Remark { get; set; }
  13. //public Guid C_CreateBy { get; set; }
  14. //public DateTime D_CreateOn { get; set; }
  15. //public Guid C_LastUpdatedBy { get; set; }
  16. //public DateTime D_LastUpdatedOn { get; set; }
  17. public char C_Status { get; set; }
  18. }
  19. }