mirror of
https://github.com/whoeevee/ivinject.git
synced 2026-01-08 23:25:03 +00:00
9 lines
294 B
C#
9 lines
294 B
C#
namespace ivinject.Features.Command.Models;
|
|
|
|
internal class IviSigningInfo
|
|
{
|
|
internal bool IsFromProvisioningProfile { get; init; }
|
|
internal required string Identity { get; init; }
|
|
internal bool IsAdHocSigning => Identity == "-";
|
|
internal FileInfo? Entitlements { get; init; }
|
|
} |