Add activation states back

This commit is contained in:
Dan Clark
2024-11-16 14:05:39 +00:00
parent e45c39030d
commit b4cf6c9928
7 changed files with 78 additions and 84 deletions
+6
View File
@@ -0,0 +1,6 @@
namespace Toolkit.Foundation;
public interface IActivation
{
bool IsActive { get; set; }
}