Skip to content

Instantly share code, notes, and snippets.

@wullemsb
Created January 21, 2023 13:15

Revisions

  1. wullemsb created this gist Jan 21, 2023.
    5 changes: 5 additions & 0 deletions GetExploitantInput.cs
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,5 @@
    public class GetExploitantInput
    {
    public int? IdIe { get; set; }
    public string ExploitantNummer { get; set; }
    }
    7 changes: 7 additions & 0 deletions GetExploitantInputType.cs
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,7 @@
    public class GetExploitantInputType : InputObjectType<GetExploitantInput>
    {
    protected override void Configure(IInputObjectTypeDescriptor<GetExploitantInput> descriptor)
    {
    descriptor.OneOf();
    }
    }