15 lines
376 B
C#
15 lines
376 B
C#
using xDataService.GraphQL;
|
|
using xStringService.Models.Entities;
|
|
|
|
namespace xDataHelper.Providers.GraphQL
|
|
{
|
|
public class XStringGraphType : XBaseGraphObjectType<XString, int>
|
|
{
|
|
public XStringGraphType() : base()
|
|
{
|
|
Field(x => x.Language);
|
|
Field(x => x.ResourceTitle);
|
|
Field(x => x.TranslatedValue);
|
|
}
|
|
}
|
|
} |