filestack/filestack-swift

View on GitHub
Sources/FilestackSDK/Internal/Protocols/Deletable.swift

Summary

Maintainability
A
0 mins
Test Coverage
//
//  Deletable.swift
//  FilestackSDK
//
//  Created by Ruben Nine on 16/10/2020.
//  Copyright © 2020 Filestack. All rights reserved.
//

import Foundation

protocol Deletable {
    /// Deletes this deletable.
    func delete()
}