mirror of
https://github.com/gusmanb/logicanalyzer.git
synced 2025-02-05 18:17:44 +00:00
15 lines
295 B
C#
15 lines
295 B
C#
using SharedDriver;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace TerminalCapture.Classes
|
|
{
|
|
public class LACEnvelope
|
|
{
|
|
public required CaptureSession Settings { get; set; }
|
|
}
|
|
}
|