mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-03 14:55:05 +00:00
18 lines
343 B
C#
18 lines
343 B
C#
using System;
|
|
|
|
namespace PepperDash.Essentials
|
|
{
|
|
/// <summary>
|
|
/// Represents a UserCodeChanged
|
|
/// </summary>
|
|
public class UserCodeChanged
|
|
{
|
|
public Action<string, string> UpdateUserCode { get; private set; }
|
|
|
|
public UserCodeChanged(Action<string, string> updateMethod)
|
|
{
|
|
UpdateUserCode = updateMethod;
|
|
}
|
|
}
|
|
}
|