Files
2026-05-16 01:13:57 +03:30

10 lines
222 B
C#

using System;
using xPushService.Interfaces;
using xServices.Models.Dtos;
using xServices.Models.Entities;
namespace xServices.Interfaces
{
public interface IXTestDtoHub : IXBaseDtoHub<XTest, XTestDto, Guid>
{ }
}