|
- using System;
-
- namespace SUISS.Storage
- {
- [AttributeUsage(AttributeTargets.Class, Inherited = false, AllowMultiple = true)]
- public class StorableAlias : Attribute
- {
- public StorableAlias(string fullName)
- {
- this._fullName = fullName;
- }
-
- public string FullName
- {
- get
- {
- return this._fullName;
- }
- set
- {
- this._fullName = value;
- }
- }
-
- private string _fullName;
- }
- }
|