using System;
using System.Collections.Generic;
using System.Text;
namespace Systin.Library{
[AttributeUsage(AttributeTargets.Class, AllowMultiple = false, Inherited = true)]
public sealed class LanguageDriverAttribute : Attribute
{
}
[AttributeUsage(AttributeTargets.Method | AttributeTargets.Property | AttributeTargets.Constructor, AllowMultiple = false, Inherited = true)]
public sealed class SystinAttribute : Attribute { }
}
|