using System.Collections.Generic; namespace PortingAssistant.Client.Model { public class InternalNuGetCompatibilityResult { public bool IsCompatible { get; set; } public string Source { get; set; } public List IncompatibleDlls; public List CompatibleDlls; public List DependencyPackages; } }