Files
xSaherElmServices/Interfaces/IXTestGraphQuery.cs
T
2026-05-09 22:22:02 +03:30

11 lines
271 B
C#

using System;
using GraphQL.Types;
using xDataService.Interfaces;
using xServices.Models.Entities;
using xServices.Providers;
namespace xServices.Interfaces
{
public interface IXTestGraphQuery : IXBaseGraphQLQuery<XTest, Guid, XTestGraphType, GuidGraphType>
{}
}