port from perforce
This commit is contained in:
16
aiwaz/Aiwaz.Resources/Attributes/CreationParameters.cs
Normal file
16
aiwaz/Aiwaz.Resources/Attributes/CreationParameters.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace Aiwaz.Resources.Attributes
|
||||
{
|
||||
public class CreationParametersAttribute : System.Attribute
|
||||
{
|
||||
public string Description { get; protected set; }
|
||||
public CreationParametersAttribute(string description)
|
||||
{
|
||||
this.Description = description;
|
||||
}
|
||||
}
|
||||
}
|
||||
11
aiwaz/Aiwaz.Resources/Attributes/ReadOnly.cs
Normal file
11
aiwaz/Aiwaz.Resources/Attributes/ReadOnly.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace Aiwaz.Resources.Attributes
|
||||
{
|
||||
public class ReadOnlyAttribute : System.Attribute
|
||||
{
|
||||
}
|
||||
}
|
||||
11
aiwaz/Aiwaz.Resources/Attributes/RequiredParameter.cs
Normal file
11
aiwaz/Aiwaz.Resources/Attributes/RequiredParameter.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace Aiwaz.Resources.Attributes
|
||||
{
|
||||
public class RequiredParameterAttribute : System.Attribute
|
||||
{
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user