ContactIncludeOption.swift 311 B

1234567891011121314
  1. //
  2. // ContactIncludeOption.swift
  3. // LoopFollow
  4. //
  5. // Created by Jonas Björkert on 2025-02-22.
  6. // Copyright © 2025 Jon Fawcett. All rights reserved.
  7. //
  8. enum ContactIncludeOption: String, Codable, Equatable, CaseIterable {
  9. case off = "Off"
  10. case include = "Include"
  11. case separate = "Separate"
  12. }