123456789101112131415161718 |
- using System;
-
- namespace Authentication_test.Areas.HelpPage.ModelDescriptions
- {
-
-
-
- [AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Enum, AllowMultiple = false, Inherited = false)]
- public sealed class ModelNameAttribute : Attribute
- {
- public ModelNameAttribute(string name)
- {
- Name = name;
- }
-
- public string Name { get; private set; }
- }
- }
|