Cleanup unnecessary classes and add only Provider Controllers ...

This commit is contained in:
2026-05-29 19:33:00 +03:30
parent 95bcbcb65d
commit 527c5cfb2b
22 changed files with 115 additions and 461 deletions
+11
View File
@@ -0,0 +1,11 @@
using System;
using xPushService.Interfaces;
using xServices.Models.Dtos;
using xServices.Models.Entities;
using xServices.Providers;
namespace xServices.Interfaces
{
public interface IXTestProviderController : IXBaseProvidedController<XTest, XTestDto, Guid, XTestDtoHub>
{ }
}