15 lines
372 B
C#
15 lines
372 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
#pragma warning disable CS8618 // Non-nullable field must contain a non-null value when exiting constructor. Consider declaring as nullable.
|
|
|
|
|
|
namespace CollabVMClient
|
|
{
|
|
public class IConfig
|
|
{
|
|
public string[] Nodes { get; set; }
|
|
}
|
|
}
|