using System;
public class Program
{
public static void Main()
new MachineSnapshot{Id = "test", MachineName = "new name"};
Console.WriteLine("Hello World");
}
public class MachineSnapshot
public string Id { get; set; }
public string MachineName { get; set; }