// // SoftwareList.h // Ample // // Created by Kelvin Sherlock on 3/28/2021. // Copyright © 2021 Kelvin Sherlock. All rights reserved. // #ifndef SoftwareList_h #define SoftwareList_h #import @interface SoftwareList : NSObject @property NSString *name; @property NSString *title; @property NSArray *items; @end @interface Software : NSObject @property NSString *name; @property NSString *title; @end NSArray *SoftwareListForMachine(NSString *machine); #endif /* SoftwareList_h */