using System.Collections.Generic; using System.Diagnostics; namespace TelegramBotBase.Base { [DebuggerDisplay("Device: {DeviceId}, {FormUri}")] public class StateEntry { /// /// Contains the DeviceId of the entry. /// public long DeviceId { get; set; } /// /// Contains the Username (on privat chats) or Group title on groups/channels. /// public string ChatTitle { get; set; } /// /// Contains additional values to save. /// public Dictionary Values { get; set; } /// /// Contains the full qualified namespace of the form to used for reload it via reflection. /// public string FormUri {get;set;} /// /// Contains the assembly, where to find that form. /// public string QualifiedName { get; set; } public StateEntry() { Values = new Dictionary(); } } }