last ...
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
using System;
|
||||
using xDataService.GraphQL;
|
||||
using xFileService.Models.Entities;
|
||||
|
||||
namespace xFileService.Providers.GraphQL
|
||||
{
|
||||
public class XFileGraphType : XBaseGraphObjectType<XFile, Guid>
|
||||
{
|
||||
public XFileGraphType() : base()
|
||||
{
|
||||
Field(x => x.Type);
|
||||
Field(x => x.Name);
|
||||
Field(x => x.Path);
|
||||
Field(x => x.Thumb);
|
||||
Field(x => x.OwnerId);
|
||||
Field(x => x.FileName);
|
||||
Field(x => x.ThumbPath);
|
||||
Field(x => x.UploadedOn);
|
||||
Field(x => x.References);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user