namespace BotPages.Core;
///
/// Атрибут для свойств страницы, которые должны сохраняться в StateStorage.
///
[AttributeUsage(AttributeTargets.Property)]
public sealed class StatefullAttribute : Attribute
{
///
/// Ключ из Storage
///
public string Key { get; }
///
public StatefullAttribute(string key) => Key = key;
}