PumpEventStored+CoreDataClass.swift 231 B

1234567891011
  1. import CoreData
  2. import Foundation
  3. @objc(PumpEventStored) public class PumpEventStored: NSManagedObject {
  4. let errorDomain = "PumpEventStoredErrorDomain"
  5. enum PumpEventErrorType: Int {
  6. case duplicate = 1001
  7. }
  8. }