using NugetWorker; using System; using System.Collections.Generic; using System.IO; using System.Text; namespace Builder.Model { public class FunctionSpecification { public FunctionSpecification() { this.libraries = new List(); } public string functionName { get; set; } public List libraries { get; set; } public string hash { get; set; } public string certificatePath { get; set; } } public class Library { public Library() { } public Library(DllInfo dllInfo) { this.name = dllInfo.name; this.nugetPackage = dllInfo.rootPackage; this.path = dllInfo.path; } public string name { get; set; } //public string version { get; set; } public string path { get; set; } public string nugetPackage { get; set; } } }