RedisConfig.cs 284 B

12345678910111213
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace DllEapCommon.Redis
  5. {
  6. public class RedisConfig
  7. {
  8. public string Connection { get; set; }
  9. public string InstanceName { get; set; }
  10. public int DefaultDB { get; set; }
  11. }
  12. }