Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3026_IntegrationIntoSymSpace/HeuristicLab.JsonInterface/Interfaces/IConcreteRestrictedJsonItem.cs @ 18045

Last change on this file since 18045 was 18043, checked in by dpiringe, 3 years ago

#3026

  • code cleanup
File size: 285 bytes
Line 
1using System.Collections.Generic;
2
3namespace HeuristicLab.JsonInterface {
4  public interface IConcreteRestrictedJsonItem<T> : IJsonItem {
5    /// <summary>
6    /// array of restricted items
7    /// </summary>
8    IEnumerable<T> ConcreteRestrictedItems { get; set; }
9  }
10}
Note: See TracBrowser for help on using the repository browser.