| | | 1 | | // -------------------------------------------------------------------------------- |
| | | 2 | | // Copyright (C) 2026 Eugene Eremeev (also known as Yevhenii Yeriemeieiv). |
| | | 3 | | // All Rights Reserved. |
| | | 4 | | // -------------------------------------------------------------------------------- |
| | | 5 | | // This software is the confidential and proprietary information of Eugene Eremeev |
| | | 6 | | // (also known as Yevhenii Yeriemeieiv) ("Confidential Information"). You shall not |
| | | 7 | | // disclose such Confidential Information and shall use it only in accordance with |
| | | 8 | | // the terms of the license agreement you entered into with Eugene Eremeev (also |
| | | 9 | | // known as Yevhenii Yeriemeieiv). |
| | | 10 | | // -------------------------------------------------------------------------------- |
| | | 11 | | |
| | | 12 | | namespace LeetCode.Tests.Base.Scenarios; |
| | | 13 | | |
| | | 14 | | /// <inheritdoc /> |
| | | 15 | | public class Scenario<TSolution> : IScenario<TSolution> |
| | | 16 | | { |
| | 180 | 17 | | public Scenario(IOperation<TSolution>[] operations, IOperationResult[] operationResults) |
| | 180 | 18 | | { |
| | 180 | 19 | | Operations = operations; |
| | 180 | 20 | | OperationResults = operationResults; |
| | 180 | 21 | | } |
| | | 22 | | |
| | | 23 | | /// <inheritdoc /> |
| | 150 | 24 | | public IOperation<TSolution>[] Operations { get; } |
| | | 25 | | |
| | | 26 | | /// <inheritdoc /> |
| | 150 | 27 | | public IOperationResult[] OperationResults { get; } |
| | | 28 | | } |