CzViewHelp.cs 348 B

12345678910111213141516
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. namespace CP.Admin
  6. {
  7. public class CzViewHelp
  8. {
  9. public int cid { set; get; }
  10. public string name { set; get; }
  11. public string ename { set; get; }
  12. public int seq { set; get; }
  13. public bool check { set; get; }
  14. }
  15. }