7 lines
96 B
Swift
7 lines
96 B
Swift
import Foundation
|
|
|
|
protocol DefaultValueProvider {
|
|
|
|
static var defaultValue: Self { get }
|
|
}
|