16 lines
252 B
C#
16 lines
252 B
C#
namespace Toolkit.Foundation;
|
|
|
|
public interface IProvider<TParameter, TService>
|
|
{
|
|
TService? Get(TParameter value);
|
|
}
|
|
|
|
public interface IProvider<TService>
|
|
{
|
|
TService? Get();
|
|
}
|
|
|
|
public interface ISelectable
|
|
{
|
|
bool Selected { get; set; }
|
|
} |