CodeLiturgy.Dashboard/CodeLiturgy.Data.Application/Configuration/ConnectionString.cs

13 lines
235 B
C#
Raw Normal View History

2022-09-29 02:37:24 +03:00
namespace BlueWest.WebApi.Configuration
{
2022-10-27 20:13:02 +03:00
public class ConnectionStringDocker
2022-09-29 02:37:24 +03:00
{
public string MySql { get; set; }
}
2022-10-27 20:13:02 +03:00
public class ConnectionStringNoDocker
{
public string MySql { get; set; }
}
2022-09-29 02:37:24 +03:00
}