PlanTempusApp/Database/Core/IDbConfigure.cs

8 lines
121 B
C#
Raw Normal View History

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