AlertContent.swift 308 B

123456789101112131415161718
  1. //
  2. // AlertContent.swift
  3. // LoopKitUI
  4. //
  5. // Created by Michael Pangburn on 5/7/20.
  6. // Copyright © 2020 LoopKit Authors. All rights reserved.
  7. //
  8. import SwiftUI
  9. public struct AlertContent {
  10. public var title: Text
  11. public var message: Text
  12. public var cancel: Text?
  13. public var ok: Text?
  14. }