13 lines
331 B
C#
13 lines
331 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Collections.ObjectModel;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace pgLabII.ViewModels;
|
|
|
|
public class ServerListViewModel : ViewModelBase
|
|
{
|
|
public ObservableCollection<ServerConfiguration> ServerConfigurations { get; } = [];
|
|
}
|