blob: f94f7d354a557e9d001b77f80f0ff8e113042955 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tango.Editors
{
/// <summary>
/// Represents an attribute for specifying properties to ignore as parameters.
/// </summary>
/// <seealso cref="System.Attribute" />
public class ParameterIgnoreAttribute : Attribute
{
}
}
|