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