Files
BotPages/BotPages.Core/Pages/PageStateAttribute.cs
FrigaT e6e5459280
All checks were successful
CI / build-test (push) Successful in 30s
Доработано Demo
2025-12-05 13:33:25 +03:00

16 lines
484 B
C#

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