2022-10-08 19:15:51 +03:00

14 lines
273 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; }
}
}