This commit is contained in:
2026-05-28 11:39:34 +03:30
parent a4c0f9a181
commit db03b59cc8
6 changed files with 310 additions and 8 deletions
+11
View File
@@ -0,0 +1,11 @@
using System;
using xFileService.Models.Dtos;
using xFileService.Models.Entities;
using xFileService.Providers.Dtos;
using xTagService.Interfaces;
namespace xFileService.Interfaces
{
public interface IXFileTagProvided : IXTagProvided<XFile, XFileDto, Guid, XFileDtoHub>
{ }
}