using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace PortingAssistantVSExtensionClient.Models { class ProjectFilePortingResponse { public bool Success { get; set; } public string SolutionPath { get; set; } public List messages { get; set; } } }