11 lines
227 B
C#
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";
|
|
}
|