1 /** 2 Copyright: © 2013 rejectedsoftware e.K. 3 License: Subject to the terms of the GNU GPLv3 license, as written in the included LICENSE.txt file. 4 Authors: Sönke Ludwig 5 */ 6 module dubregistry.package_; 7 8 class PackageVersion { 9 string name; 10 string description; 11 string homepage; 12 string copyright; 13 string[] authors; 14 string[string] dependencies; 15 RepositoryInfo repository; 16 } 17 18 struct RepositoryInfo { 19 string type; 20 string url; 21 }