last ...
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using xDataService.GraphQL;
|
||||
using xServices.Models.Entities;
|
||||
|
||||
namespace xServices.Providers
|
||||
{
|
||||
public class XTestGraphType : XBaseGraphObjectType<XTest, Guid>
|
||||
{
|
||||
public XTestGraphType() : base()
|
||||
{
|
||||
Field(x => x.Firstname);
|
||||
Field(x => x.Lastname);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user