namespace Kruzya.TelegramBot.Core.Option;
///
/// Explains what
///
public interface IOptionKey
{
///
/// The chat identifier where this key is related.
///
public long ChatId { get; }
///
/// The Telegram user identifier. May be NULL if this is a simple option for all chat members.
///
public long? UserId { get; }
///
/// The unique option identifier.
///
public string Identifier { get; }
}