18 lines
333 B
C#
18 lines
333 B
C#
using System;
|
|
|
|
namespace BrewMonster
|
|
{
|
|
[AttributeUsage(AttributeTargets.Field, Inherited = false, AllowMultiple = false)]
|
|
public sealed class ResetStaticAttribute : Attribute
|
|
{
|
|
public bool ClearCollection { get; }
|
|
|
|
public ResetStaticAttribute(bool clearCollection = false)
|
|
{
|
|
ClearCollection = clearCollection;
|
|
}
|
|
}
|
|
}
|
|
|
|
|