/* libmspack -- a library for working with Microsoft compression formats. * (C) 2003-2019 Stuart Caie * * libmspack is free software; you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License (LGPL) version 2.1 * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ namespace LibMSPackSharp.CAB { public class FolderImpl : Folder { /// /// Where are the data blocks? /// public FolderData Data { get; set; } /// /// First file needing backwards merge /// public InternalFile MergePrev { get; set; } /// /// First file needing forwards merge /// public InternalFile MergeNext { get; set; } } }