using PortingAssistant.Client.Model; using System.Collections.Generic; namespace PortingAssistant.Common.Model { public class ProjectFilePortingRequest { public List Projects { get; set; } public string SolutionPath { get; set; } public string TargetFramework { get; set; } public List RecommendedActions { get; set; } } }