File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
MatterDotNet/Clusters/Application Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -145,11 +145,11 @@ public struct OperationalCommandResponse() {
145145 /// <summary>
146146 /// Get the Operational State List attribute
147147 /// </summary>
148- public async Task < OperationalState [ ] > GetOperationalStateList ( SecureSession session ) {
148+ public async Task < General . OperationalState . OperationalStatePayload [ ] > GetOperationalStateList ( SecureSession session ) {
149149 FieldReader reader = new FieldReader ( ( IList < object > ) ( await GetAttribute ( session , 3 ) ) ! ) ;
150- OperationalState [ ] list = new OperationalState [ reader . Count ] ;
150+ General . OperationalState . OperationalStatePayload [ ] list = new General . OperationalState . OperationalStatePayload [ reader . Count ] ;
151151 for ( int i = 0 ; i < reader . Count ; i ++ )
152- list [ i ] = new OperationalState ( reader . GetStruct ( i ) ! ) ;
152+ list [ i ] = new General . OperationalState . OperationalStatePayload ( reader . GetStruct ( i ) ! ) ;
153153 return list ;
154154 }
155155
You can’t perform that action at this time.
0 commit comments