mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-11-16 03:32:20 +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);
|
||
|
}
|
||
|
}
|