mirror of
https://github.com/azaion/satellite-provider.git
synced 2026-04-22 22:16:38 +00:00
8 lines
136 B
C#
8 lines
136 B
C#
namespace SatelliteProvider.Common.Configs;
|
|
|
|
public class DatabaseConfig
|
|
{
|
|
public string ConnectionString { get; set; } = null!;
|
|
}
|
|
|