implement Webinar and WebinarSubscriber Entity and Dto (s) and Data Requirements ...
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
using System;
|
||||
using xDataService.GraphQL;
|
||||
using xWebinarService.Models.Entities;
|
||||
|
||||
namespace xWebinarService.Providers.GraphQL
|
||||
{
|
||||
public class XWebinarGraphType : XBaseGraphObjectType<XWebinar, Guid>
|
||||
{
|
||||
public XWebinarGraphType() : base()
|
||||
{
|
||||
Field(x => x.Type);
|
||||
Field(x => x.Title);
|
||||
Field(x => x.OwnerId);
|
||||
Field(x => x.Enabled);
|
||||
Field(x => x.CreatedOn);
|
||||
Field(x => x.Description);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user