19 lines
423 B
C#
19 lines
423 B
C#
using System;
|
|
|
|
namespace Activity
|
|
{
|
|
[AttributeUsage(AttributeTargets.Class)]
|
|
public class ActivitySentryAttribute : Attribute
|
|
{
|
|
public ActivitySentryAttribute(
|
|
int eventType,
|
|
int eventSubType)
|
|
{
|
|
EventType = eventType;
|
|
EventSubType = eventSubType;
|
|
}
|
|
|
|
public int EventType { get; }
|
|
public int EventSubType { get; }
|
|
}
|
|
} |