ContactIncludeOption.swift 198 B

123456789
  1. // LoopFollow
  2. // ContactIncludeOption.swift
  3. enum ContactIncludeOption: String, Codable, Equatable, CaseIterable {
  4. case off = "Off"
  5. case include = "Include"
  6. case separate = "Separate"
  7. }