Files
xSaherElmServices/Models/GraphQL/XTestGraphType.cs
T
2026-05-16 01:13:57 +03:30

15 lines
328 B
C#

using System;
using xDataService.GraphQL;
using xServices.Models.Entities;
namespace xServices.Models.GraphQL
{
public class XTestGraphType : XBaseGraphObjectType<XTest, Guid>
{
public XTestGraphType() : base()
{
Field(x => x.Firstname);
Field(x => x.Lastname);
}
}
}