| 123456789101112131415161718192021222324252627282930313233343536373839 |
- //
- // System.EnterpriseServices.CompensatingResourceManager.ApplicationCrmEnabledAttribute.cs
- //
- // Author:
- // Alejandro Sánchez Acosta ([email protected])
- //
- // (C) Alejandro Sánchez Acosta
- //
- namespace System.EnterpriseServices.CompensatingResourceManager {
- /// <summary>
- /// ApplicationCrmEnable Attribute for classes.
- /// </summary>
-
- [AttributeUsage(AttributeTargets.Assembly)]
- public sealed class ApplicationCrmEnabledAttribute : Attribute
- {
- public bool val;
- public ApplicationCrmEnabledAttribute()
- {
- val = true;
- }
- public ApplicationCrmEnabledAttribute (bool val)
- {
- this.val = val;
- }
- public bool Value
- {
- get
- {
- return val;
- }
- }
- }
- }
|