mirror of
https://github.com/gui-cs/Terminal.Gui.git
synced 2025-12-26 15:57:56 +01:00
17 lines
271 B
C#
17 lines
271 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace TerminalGuiFluentTesting;
|
|
|
|
/// <summary>
|
|
/// Which v2 driver should be used
|
|
/// </summary>
|
|
public enum V2TestDriver
|
|
{
|
|
V2Win,
|
|
V2Net
|
|
}
|