Skip to content

Commit

Permalink
Change CredentialPackContents visibility on swift library (#50)
Browse files Browse the repository at this point in the history
Signed-off-by: Tiago Nascimento <[email protected]>
  • Loading branch information
theosirian authored Nov 18, 2024
1 parent 9282f8b commit f380681
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Sources/MobileSdk/CredentialPack.swift
Original file line number Diff line number Diff line change
Expand Up @@ -170,11 +170,11 @@ public class CredentialPack {
}

/// Metadata for a CredentialPack, as loaded from the StorageManager.
struct CredentialPackContents {
public struct CredentialPackContents {
private static let storagePrefix = "CredentialPack:"
private let idKey = "id"
private let credentialsKey = "credentials"
let id: UUID
public let id: UUID
let credentials: [Uuid]

public init(id: UUID, credentials: [Uuid]) {
Expand Down

0 comments on commit f380681

Please sign in to comment.