TispContentGroupItemCreateViewModel.cs 489 B

1234567891011121314151617181920
  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 TispContentGroupItemCreateViewModel : BaseViewModel
  9. {
  10. /// <summary>
  11. /// 分组编号
  12. /// </summary>
  13. public Guid G_ContentGroupCode { get; set; }
  14. /// <summary>
  15. /// 内容编号
  16. /// </summary>
  17. public Guid G_ContentCode { get; set; }
  18. }
  19. }