aboutsummaryrefslogtreecommitdiffstats
path: root/QtVsTools.TestAdapter/SourceInfo.cs
blob: 2ec24e001b3eaa525c0ffd0b4d057c43c26e9c0f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Copyright (C) 2025 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

namespace QtVsTools.TestAdapter
{
    internal class SourceInfo
    {
        public string SymbolName { get; set; }
        public int LineNumber { get; set; }
        public string SourceFile { get; set; }
    }
}