File: Commands\Test\MTP\Terminal\IStopwatch.cs
Web Access
Project: ..\..\..\src\Cli\dotnet\dotnet.csproj (dotnet)
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
 
namespace Microsoft.DotNet.Cli.Commands.Test.Terminal;
 
internal interface IStopwatch
{
    void Start();
 
    void Stop();
 
    TimeSpan Elapsed { get; }
}