EditorForm - Remove abstract from class declaration

This commit is contained in:
miku-666
2025-05-27 21:51:20 +02:00
parent 1c0012d615
commit 5aad9ea97a

View File

@@ -9,11 +9,15 @@ using PckStudio.Interfaces;
namespace PckStudio.Internal
{
public abstract class EditorForm<T> : MetroForm where T : class
public class EditorForm<T> : MetroForm where T : class
{
protected T EditorValue;
private readonly ISaveContext<T> SaveContext;
private EditorForm()
{
}
protected EditorForm(T value, ISaveContext<T> saveContext)
{
_ = value ?? throw new ArgumentNullException(nameof(value));