HelpViewModel.cs 463 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. namespace GSMarketSys.Controllers
  6. {
  7. public class HelpViewModel
  8. {
  9. public string HelpId { get; set; }
  10. public string FunctionId { get; set; }
  11. public string HelpTitle { get; set; }
  12. public string HelpKeyWords { get; set; }
  13. public string HelpContent { get; set; }
  14. public string Sequence { get; set; }
  15. }
  16. }