mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-11-15 19:22:19 +08:00
15 lines
678 B
C#
15 lines
678 B
C#
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);
|
|
}
|
|
}
|