using System.Runtime.Serialization; using System.Threading.Tasks; namespace Kruzya.TelegramBot.Core.Options; public interface IOption { public Task GetValueAsync(long chatId); public Task SetValueAsync(long chatId, TValue value); }