Files
telegram-bot/Core/Options/IOption.cs
T
2023-07-20 20:24:16 +03:00

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);
}