12345678910111213141516171819 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace CZFW.Framework.Attributes
- {
-
-
-
- public class PropertyOrderAttribute:Attribute
- {
- public int Order { get; set; } = 11;
- public PropertyOrderAttribute(int order)
- {
- Order = order;
- }
- }
- }
|