9 lines
160 B
C#
9 lines
160 B
C#
namespace Toolkit.Foundation;
|
|
|
|
public interface IActivation
|
|
{
|
|
bool IsActive { get; set; }
|
|
}
|
|
|
|
public interface IActivation<TViewModel> :
|
|
IActivation; |