Add extension property to tar

This commit is contained in:
Matt Nadareski
2025-08-28 09:13:02 -04:00
parent c9a462a1c6
commit 2ec008b3b7

View File

@@ -17,6 +17,14 @@ namespace SabreTools.Serialization.Wrappers
#endregion
#region Extension Properties
/// <inheritdoc cref="Archive.Entries"/>
/// TODO: Simplify when Models is updated
public Entry[]? Entries => Model.Entries != null ? [.. Model.Entries] : null;
#endregion
#region Constructors
/// <inheritdoc/>