IToggleState Interface Order Changed

This commit is contained in:
Syntriax 2022-11-14 14:18:53 +03:00
parent 636056b82e
commit 463182ab43
1 changed files with 2 additions and 2 deletions

View File

@ -4,12 +4,12 @@ namespace Syntriax.Modules.ToggleState
{
public interface IToggleState
{
bool IsToggled { get; set; }
/// <summary>
/// Called everytime the IsToggled field is changed
/// </summary>
/// <value>The new value of IsToggled</value>
Action<bool> OnToggleStateChanged { get; set; }
bool IsToggled { get; set; }
}
}