import Foundation

enum CurrentRecordingStatus: String {
    
    case RECORDING
    case PAUSED
    case NONE
    
}
