| 123456789101112131415161718 |
- //
- // AlertContent.swift
- // LoopKitUI
- //
- // Created by Michael Pangburn on 5/7/20.
- // Copyright © 2020 LoopKit Authors. All rights reserved.
- //
- import SwiftUI
- public struct AlertContent {
- public var title: Text
- public var message: Text
- public var cancel: Text?
- public var ok: Text?
- }
|