using System.Threading.Tasks; namespace Kruzya.TelegramBot.Core.Options; public interface IOptionProvider { public Task GetValueAsync(long chatId, string optionId, TValue defVal); public Task SetValueAsync(long chatId, string optionId, TValue value); }