123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- using OASystem.Domain.ViewModels.Groups;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.Dtos.Groups
- {
-
-
-
- public class InvertedListDto
- {
- }
-
-
-
-
- public class InvertedListCreateDto : PortDtoBase
- {
-
-
-
- public int DiId { get; set; }
- }
-
-
-
-
- public class InvertedListUpdateDto : InvertedListInfoView
- {
-
-
-
- public int PortType { get; set; }
- }
-
-
-
-
- public class InvertedListFileDownloadDto : PortDtoBase
- {
-
-
-
- public int DiId { get; set; }
- }
- }
|