mirror of
https://github.com/hmaxnl/SharpRSS.git
synced 2024-11-13 00:54:20 +01:00
9 lines
244 B
C#
9 lines
244 B
C#
|
namespace SharpRSS.Core.Configuration;
|
||
|
|
||
|
public class DatabaseSettings
|
||
|
{
|
||
|
public const string Configuration = "Database";
|
||
|
|
||
|
public string Server { get; set; } = string.Empty;
|
||
|
public string Connection { get; set; } = string.Empty;
|
||
|
}
|