1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- 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 int CurrUserId { get; set; }
- }
-
-
-
-
- public class InvertedListFileDownloadDto : PortDtoBase
- {
-
-
-
- public int DiId { get; set; }
- }
- }
|