| 1234567891011121314 |
- //
- // ContactIncludeOption.swift
- // LoopFollow
- //
- // Created by Jonas Björkert on 2025-02-22.
- // Copyright © 2025 Jon Fawcett. All rights reserved.
- //
- enum ContactIncludeOption: String, Codable, Equatable, CaseIterable {
- case off = "Off"
- case include = "Include"
- case separate = "Separate"
- }
|