mirror of
https://github.com/OpenLogics/MewtocolNet.git
synced 2025-12-06 03:01:24 +00:00
22 lines
409 B
C#
22 lines
409 B
C#
using System;
|
|
|
|
namespace MewtocolNet.RegisterAttributes {
|
|
|
|
/// <summary>
|
|
/// Defines the poll level of the register
|
|
/// </summary>
|
|
[AttributeUsage(AttributeTargets.Property, AllowMultiple = false)]
|
|
public class PollLevelAttribute : Attribute {
|
|
|
|
internal int pollLevel;
|
|
|
|
public PollLevelAttribute(int level) {
|
|
|
|
pollLevel = level;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|