namespace Quadarax.Application.QLiberace.Common.Attributes { [AttributeUsage(AttributeTargets.Class)] public class ModuleAttribute : Attribute { public string ModuleCode { get; set; } public ModuleAttribute(string moduleCode) { if (string.IsNullOrEmpty(moduleCode)) throw new ArgumentNullException(nameof(moduleCode)); ModuleCode = moduleCode; } } }