Skip to content

Commit

Permalink
feat: Added non generic BasicBlockListItem
Browse files Browse the repository at this point in the history
  • Loading branch information
nikcio committed Jun 10, 2022
1 parent 3058244 commit 8aa14b9
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@
using Nikcio.UHeadless.Properties.Models;

namespace Nikcio.UHeadless.Basics.Properties.EditorsValues.BlockList.Models {
/// <inheritdoc/>
[GraphQLDescription("Represents a block list item.")]
public class BasicBlockListItem : BasicBlockListItem<BasicProperty> {
/// <inheritdoc/>
public BasicBlockListItem(CreateBlockListItem createBlockListItem, IPropertyFactory<BasicProperty> propertyFactory) : base(createBlockListItem, propertyFactory) {
}
}

/// <inheritdoc/>
[GraphQLDescription("Represents a block list item.")]
public class BasicBlockListItem<TProperty> : BlockListItem
Expand Down

0 comments on commit 8aa14b9

Please sign in to comment.