17 lines
392 B
C#
17 lines
392 B
C#
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;
|
|
}
|
|
}
|
|
}
|