using System; using System.Collections.Generic; using System.Text; namespace TelegramBotBase.Attributes { /// /// Declares that this class should not be getting serialized /// [AttributeUsage(AttributeTargets.Class)] public class IgnoreState : Attribute { } }