chore: move classes and interfaces to individual files

This commit is contained in:
Andrew Welker
2025-09-26 21:20:10 -05:00
parent 4747c16b02
commit 087d0a1149
16 changed files with 316 additions and 220 deletions

View File

@@ -0,0 +1,17 @@
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;
}
}
}