using System; using System.Collections.Generic; namespace PortingAssistant.Client.Model { public class PortingRequest { public List Projects { get; set; } public string SolutionPath { get; set; } public string TargetFramework { get; set; } public List RecommendedActions { get; set; } public bool IncludeCodeFix { get; set; } public VisualStudioVersion? VisualStudioVersion { get; set; } } }