ICommonService.cs 310 B

12345678910
  1. using System.Threading.Tasks;
  2. using GxPress.Result;
  3. namespace GxPress.Service.Interface.CommonService
  4. {
  5. public interface ICommonService : IService
  6. {
  7. Task<CollectionContentJsonData> StructCollectionData(int collectionDataId, int collectionType, int sourceUserId, bool isReturn = false);
  8. }
  9. }