BREAKING CHANGE: Renamed IInitialize.Initialized to IsInitialized

This commit is contained in:
2024-10-22 20:57:12 +03:00
parent fdc38fc800
commit 1f8fa78b76
7 changed files with 19 additions and 19 deletions

View File

@@ -29,7 +29,7 @@ public class StateEnable : IStateEnable
public bool Assign(IEntity entity)
{
if (_entity is not null && _entity.Initialized)
if (_entity is not null && _entity.IsInitialized)
return false;
_entity = entity;