电子药箱通讯服务端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

DataBaseConnectString.cs 368B

1234567891011121314151617
  1. namespace Rdh.SocketServer.Client.Models
  2. {
  3. public class DataBaseConnectString
  4. {
  5. public string Name { get; set; } = string.Empty;
  6. public string ConnectionString { get; set; } = string.Empty;
  7. public DbTypes DbType { get; set; }
  8. }
  9. public enum DbTypes
  10. {
  11. Oracle,
  12. Mysql,
  13. SQLServer,
  14. Sqlite,
  15. }
  16. }