PlanTempusApp/Database/Core/IDbConfigure.cs

8 lines
95 B
C#
Raw Normal View History

2025-02-11 17:07:01 +01:00
namespace Database.Core
{
public interface IDbConfigure<T>
{
void With(T command);
}
}