8 lines
139 B
C#
8 lines
139 B
C#
using e_suite.Database.Core;
|
|
|
|
namespace e_suite.API.Common;
|
|
|
|
public interface IPatchFactory
|
|
{
|
|
IPatch<T> Create<T>(T value);
|
|
} |