MES-ETL/ConsoleApp2/Options/DatabaseOptions.cs

10 lines
258 B
C#
Raw Normal View History

2023-12-28 15:18:03 +08:00
namespace ConsoleApp2.Options;
2023-12-29 16:16:05 +08:00
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; }
}