Files
watcher/Watcher/ViewModels/EditServerViewModel.cs

11 lines
227 B
C#

namespace Watcher.ViewModels;
public class EditServerViewModel
{
public string Name { get; set; } = string.Empty;
public string IPAddress { get; set; } = string.Empty;
public string Type { get; set; } = "VPS";
}