implement Webinar and WebinarSubscriber Entity and Dto (s) and Data Requirements ...
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
using xDataService.GraphQL;
|
||||
using xWebinarService.Models.Entities;
|
||||
|
||||
namespace xWebinarService.Providers.GraphQL
|
||||
{
|
||||
public class XWebinarSubscriberGraphType : XBaseGraphObjectType<XWebinarSubscriber, int>
|
||||
{
|
||||
public XWebinarSubscriberGraphType() : base()
|
||||
{
|
||||
Field(x => x.WebinarId);
|
||||
Field(x => x.SubscribedOn);
|
||||
Field(x => x.SubscriberId);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user