mirror of
https://github.com/whoeevee/ivinject.git
synced 2026-01-08 23:25:03 +00:00
9 lines
320 B
C#
9 lines
320 B
C#
namespace ivinject.Features.Command.Models;
|
|
|
|
internal class IviPackagingInfo
|
|
{
|
|
internal string? CustomBundleId { get; init; }
|
|
internal bool RemoveSupportedDevices { get; init; }
|
|
internal bool EnableDocumentsSupport { get; init; }
|
|
internal required IEnumerable<string> DirectoriesToRemove { get; init; }
|
|
} |