Remove ToList() method from PObjectState class

The `ToList()` method in the `PObjectState` class has been removed. This method previously returned a list of strings, including the `IntlState` property of `State1` and other state properties (`State2`, `State3`, `State4`). Its removal indicates that this functionality is no longer needed or has been refactored.
This commit is contained in:
tekh 2025-08-01 13:47:50 +02:00
parent c325b2122b
commit 7e82f688ad

View File

@ -83,9 +83,4 @@ public class PObjectState
public virtual State? State1 { get; set; }
public virtual IEnumerable<PControlsTF>? TFControls { get; set; }
public IEnumerable<string?> ToList() => new List<string?>
{
State1?.IntlState, State2, State3, State4
};
}