Skip to content

Commit

Permalink
✨ (LekaApp): Add RootAccount model in AccountKit
Browse files Browse the repository at this point in the history
  • Loading branch information
HPezz committed Feb 12, 2024
1 parent f570e65 commit f561412
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions Modules/AccountKit/Sources/Models/RootAccount.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
// Leka - iOS Monorepo
// Copyright APF France handicap
// SPDX-License-Identifier: Apache-2.0

import SwiftUI

// MARK: - RootAccount

struct RootAccount: Identifiable, Codable {
var id: UUID
var rootOwnerUid: UUID
var createdAt: Date
var lastEditedAt: Date
}

0 comments on commit f561412

Please sign in to comment.