2022-10-08 19:26:34 +03:00

11 lines
245 B
C#

using System;
namespace TelegramBotBase.Attributes;
/// <summary>
/// Declares that the field or property should be save and recovered an restart.
/// </summary>
public class SaveState : Attribute
{
public string Key { get; set; }
}