13 lines
277 B
C#
13 lines
277 B
C#
using System.Collections.Generic;
|
|
|
|
namespace FieldVisualizer.Entities.Values.Primitives
|
|
{
|
|
public interface IPrimitiveSet
|
|
{
|
|
string Name { get; set; }
|
|
string SubTitle { get; set; }
|
|
IEnumerable<IValuePrimitive> ValuePrimitives { get; }
|
|
|
|
}
|
|
}
|