- using System;
- namespace Quadarax.Foundation.Core.Attributes
- {
- [AttributeUsage(validOn:AttributeTargets.Field)]
- public class CodeMessageExceptionItemAttribute : Attribute
- {
- public int Code { get; }
- public CodeMessageExceptionItemAttribute(int code)
- {
- Code = code;
- }
- }
- }
|