7 lines
269 B
C#
7 lines
269 B
C#
namespace BotPages.Core.Abstractions;
|
|
|
|
/// <summary>
|
|
/// Ключ для идентификации пользовательской сессии.
|
|
/// </summary>
|
|
public readonly record struct CompositeSessionKey(string MessengerType, string ChatId, string? UserId);
|