using System.Threading.Tasks; namespace Kruzya.TelegramBot.Core.Option; /// /// Allows interact with option related with some chat. /// public interface IOptionItem { public IOptionKey Key { get; } public T Value { get; set; } public bool IsChanged { get; } public Task LoadAsync(IOptionStorageAdapter adapter); public Task SaveAsync(IOptionStorageAdapter adapter); }