mirror of
https://github.com/whoeevee/ivinject.git
synced 2026-01-08 23:25:03 +00:00
9 lines
251 B
C#
9 lines
251 B
C#
using ivinject.Common.Models;
|
|
|
|
namespace ivinject.Features.Codesigning.Models;
|
|
|
|
internal class IviEncryptionInfo
|
|
{
|
|
internal bool IsMainBinaryEncrypted { get; init; }
|
|
internal IEnumerable<IviMachOBinary> EncryptedBinaries { get; init; } = [];
|
|
} |