Files
xSaherElmAiApi/Data/GraphQL/XTestGraphType.cs
T

13 lines
270 B
C#

using xAiApi.Data.Models.Entities;
using xDataService.GraphQL;
namespace xAiApi.Data.GraphQL
{
public class XTestGraphType : XBaseGraphObjectType<XTest, int>
{
public XTestGraphType() : base()
{
Field(x => x.Title);
}
}
}