Files
telegram-bot/Core/Options/IOption.cs
T

10 lines
260 B
C#
Raw Normal View History

2023-07-20 20:24:16 +03:00
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);
}