RedisConfig.cs 324 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace CP.Common.redis
  6. {
  7. public class RedisConfig
  8. {
  9. public string host { get; set; }
  10. public string password { get; set; }
  11. public int port { get; set; }
  12. public int db { get; set; }
  13. }
  14. }