blob: e6cfa68dd4179c1890b8bf00458f4fae72d95f0b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/***************************************************************************************************
Copyright (C) 2025 The Qt Company Ltd.
SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
***************************************************************************************************/
using UserViewLib;
namespace UserViewQml
{
internal class Program
{
public static IUserList Users { get; set; } = null;
static void Main(string[] args)
{
while (true)
Thread.Sleep(100);
}
}
}
|