blob: e6f36b4c69663879dcd3cde1b1034dd0b2284cba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tango.Core
{
/// <summary>
/// Represents a component that exposes some of it's properties as an observable collection of <see cref="ParameterItem"/> which can be bound to UI controls.
/// </summary>
public interface IParameterized
{
/// <summary>
/// Gets a bind-able observable collection of the component properties.
/// </summary>
[ParameterIgnore]
ReadOnlyObservableCollection<ParameterItem> Parameters { get; set; }
}
}
|