using System;
namespace Artemis.Core.Events;
///
/// Represents an event argument containing a single value of type
///
/// The type of value the argument contains
public class SingleValueEventArgs : EventArgs
{
#region Constructors
internal SingleValueEventArgs(T value)
{
Value = value;
}
#endregion
#region Properties & Fields
///
/// Gets the value of the argument
///
public T Value { get; }
#endregion
}