10 lines
258 B
C#
10 lines
258 B
C#
namespace ConsoleApp2.Options;
|
|
|
|
public class DatabaseOptions
|
|
{
|
|
public string Host { get; set; }
|
|
public uint Port { get; set; }
|
|
public string Database { get; set; }
|
|
public string User { get; set; }
|
|
public string Password { get; set; }
|
|
} |