Backend/e-suite.API.Common/e-suite.API.Common/IPatchFactory.cs

8 lines
139 B
C#

using e_suite.Database.Core;
namespace e_suite.API.Common;
public interface IPatchFactory
{
IPatch<T> Create<T>(T value);
}