BililiveRecorder/BililiveRecorder.Core/PolicyNames.cs

15 lines
678 B
C#
Raw Normal View History

2021-02-23 18:03:37 +08:00
namespace BililiveRecorder.Core
{
internal static class PolicyNames
{
internal const string PolicyRoomInfoApiRequestAsync = nameof(PolicyRoomInfoApiRequestAsync);
internal const string PolicyDanmakuApiRequestAsync = nameof(PolicyDanmakuApiRequestAsync);
internal const string PolicyStreamApiRequestAsync = nameof(PolicyStreamApiRequestAsync);
internal const string CacheKeyUserInfo = nameof(CacheKeyUserInfo);
internal const string CacheKeyRoomInfo = nameof(CacheKeyRoomInfo);
internal const string CacheKeyDanmaku = nameof(CacheKeyDanmaku);
internal const string CacheKeyStream = nameof(CacheKeyStream);
}
}