ContactIncludeOption.swift 243 B

12345678910
  1. // LoopFollow
  2. // ContactIncludeOption.swift
  3. // Created by Jonas Björkert on 2025-02-23.
  4. enum ContactIncludeOption: String, Codable, Equatable, CaseIterable {
  5. case off = "Off"
  6. case include = "Include"
  7. case separate = "Separate"
  8. }