GroupOrderPreInfoDtos.cs 480 B

123456789101112131415161718192021222324
  1. using OASystem.Domain.ViewModels.Groups;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace OASystem.Domain.Dtos.Groups
  8. {
  9. public class GroupOrderPreInfoDtos
  10. {
  11. }
  12. public class GroupOrderPreInfoOpDto: GrpOrderPreInfoView
  13. {
  14. public int CurrUserId { get; set; }
  15. }
  16. public class GroupOrderPreInfoListDto : DtoBase
  17. {
  18. public string Search { get; set; }
  19. }
  20. }