ISystemSettingCacheManager.cs 526 B

123456789101112131415161718
  1. using Hotline.Settings;
  2. namespace Hotline.Caching.Interfaces
  3. {
  4. public interface ISystemSettingCacheManager
  5. {
  6. SystemSetting? GetSetting(string code);
  7. void DelSystemSetting(string code);
  8. int NoConnectByeTimes { get; }
  9. int EffectiveTimes { get; }
  10. int ConnectByeTimes { get; }
  11. int CallInOverConnRingTime { get; }
  12. int SeatChaoTime { get; }
  13. int RingTimes { get; }
  14. string RecordPrefix { get; }
  15. string DefaultVisitEmployeeId { get; }
  16. }
  17. }