Files
HopFrame/src/HopFrame.Core/Configuration/HopFrameConfig.cs
Leon Hoppe b2a029d50b
All checks were successful
HopFrame CI / build (push) Successful in 2m10s
HopFrame CI / test (push) Successful in 1m27s
Added configurators
2026-02-22 19:32:33 +01:00

11 lines
299 B
C#

namespace HopFrame.Core.Configuration;
/**
* The configuration for the library
*/
public sealed class HopFrameConfig {
/** The configurations for the table repositories */
public IList<TableConfig> Tables { get; set; } = new List<TableConfig>();
internal HopFrameConfig() {}
}