PageFunDto.cs 509 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 OASystem.Domain.Dtos.System
  7. {
  8. public class PageFunDto
  9. {
  10. private int pageid;
  11. private List<int> bindFunArr;
  12. private int uid;
  13. public int Pageid { get => pageid; set => pageid = value; }
  14. public List<int> BindFunArr { get => bindFunArr; set => bindFunArr = value; }
  15. public int Uid { get => uid; set => uid = value; }
  16. }
  17. }