mirror of
https://github.com/Bubuni-Team/telegram-bot.git
synced 2026-07-31 00:29:24 +03:00
9 lines
258 B
C#
9 lines
258 B
C#
using System.Threading.Tasks;
|
|
|
|
namespace Kruzya.TelegramBot.Core.Options;
|
|
|
|
public interface IOptionProvider
|
|
{
|
|
public Task<TValue> GetValueAsync<TOption, TValue>(long chatId);
|
|
public Task SetValueAsync<TOption, TValue>(long chatId, TValue value);
|
|
} |