12 lines
340 B
C#
12 lines
340 B
C#
using System;
|
|
using xFileService.Models.Dtos;
|
|
using xFileService.Models.Entities;
|
|
using xFileService.Providers.Dtos;
|
|
using xIdentityService.Interfaces;
|
|
using xTagService.Interfaces;
|
|
|
|
namespace xFileService.Interfaces
|
|
{
|
|
public interface IXFileProvider : IXBaseProvidedHasTag<XFile, XFileDto, Guid, XFileDtoHub>, IXBaseReferenced
|
|
{}
|
|
} |