123456789101112131415161718192021222324 |
- using System;
- namespace ET
- {
-
-
-
-
-
- [AttributeUsage(AttributeTargets.Class, Inherited = false)]
- public class UniqueIdAttribute : Attribute
- {
- public int Min;
- public int Max;
-
- public UniqueIdAttribute(int min = int.MinValue, int max = int.MaxValue)
- {
- this.Min = min;
- this.Max = max;
- }
- }
- }
|