using System; using System.Collections.Generic; using System.Text; namespace TelegramBotBase.Attributes { /// /// Declares that the field or property should be save and recovered an restart. /// public class SaveState : Attribute { public String Key { get; set; } } }