blob: 0bbca6a0657b52436031d7ea3b11d2e31c322a11 (
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.Core
{
/// <summary>
/// Represents an attribute for specifying properties to ignore as parameters.
/// </summary>
/// <seealso cref="System.Attribute" />
public class ParameterIgnoreAttribute : Attribute
{
}
}
|