From 80a28539bcc4d2714b17dd6a94aac7d80559acef Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Thu, 20 Aug 2020 11:26:06 -0700 Subject: [PATCH] Depot stuff in own region --- SabreTools.Library/DatFiles/DatHeader.cs | 28 ++++++++++++++---------- 1 file changed, 16 insertions(+), 12 deletions(-) diff --git a/SabreTools.Library/DatFiles/DatHeader.cs b/SabreTools.Library/DatFiles/DatHeader.cs index 461207cf..3e187393 100644 --- a/SabreTools.Library/DatFiles/DatHeader.cs +++ b/SabreTools.Library/DatFiles/DatHeader.cs @@ -210,18 +210,6 @@ namespace SabreTools.Library.DatFiles [JsonIgnore] public bool RemoveExtension { get; set; } - /// - /// Input depot information - /// - [JsonIgnore] - public DepotInformation InputDepot { get; set; } - - /// - /// Output depot information - /// - [JsonIgnore] - public DepotInformation OutputDepot { get; set; } - /// /// Output the machine name /// @@ -246,6 +234,22 @@ namespace SabreTools.Library.DatFiles #endregion + #region Depot Information + + /// + /// Input depot information + /// + [JsonIgnore] + public DepotInformation InputDepot { get; set; } + + /// + /// Output depot information + /// + [JsonIgnore] + public DepotInformation OutputDepot { get; set; } + + #endregion + #endregion #region Instance Methods