namespace SabreTools.Compression.libmspack { /// /// There is one of these for every cabinet a folder spans /// public class mscabd_folder_data { public mscabd_folder_data next { get; set; } /// /// Cabinet file of this folder span /// public mscabd_cabinet cab { get; set; } /// /// Cabinet offset of first datablock /// public long offset { get; set; } } }