using System.Threading.Tasks;
namespace Abp.Application.Features
{
///
/// Defines a store to get a feature's value.
///
public interface IFeatureValueStore
{
///
/// Gets the feature value or null.
///
/// The tenant id.
/// The feature.
Task GetValueOrNullAsync(int tenantId, Feature feature);
}
}