EntityKeyVal.cs 228 B

123456789101112
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace DllEapCommon.Redis
  5. {
  6. public class EntityKeyVal
  7. {
  8. public string Key { get; set; }
  9. public object Value { get; set; }
  10. }
  11. }