ConfigInfo.cs 272 B

1234567
  1. namespace Config;
  2. public class EEMSCenterConfig
  3. {
  4. public static string DBString { get; set; } = "Database=EEMSServer;Password=123456;Host=localhost;Username=postgres;Persist Security Info=True";
  5. public static string DeviceTableName { get; set; } = "Devices";
  6. }