blob: fbee8a4a097a4daa71ab2f0810600268e561aab0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.Core;
namespace Tango.SharedUI.Editors
{
/// <summary>
/// Represents a custom <see cref="ParameterItem"/> editor.
/// </summary>
/// <seealso cref="IParameterized"/>
public interface IParameterItemEditor
{
/// <summary>
/// Gets or sets the parameter item.
/// </summary>
ParameterItem ParameterItem { get; set; }
/// <summary>
/// Gets or sets the parameterized object.
/// </summary>
IParameterized ParameterizedObject { get; set; }
}
}
|