UploadState.swift 193 B

1234567891011121314
  1. //
  2. // UploadState.swift
  3. // LoopKit
  4. //
  5. // Copyright © 2018 LoopKit Authors. All rights reserved.
  6. //
  7. enum UploadState: Int {
  8. case notUploaded = 0
  9. case uploading
  10. case uploaded
  11. }