Quick actions

cmd+k|ctrl+k

Navigation

Languages

LSP

Snippet info

Language

Swift

Visibility

public

Author

alfian

Created

2020-06-03T07:02:49Z

Updated

2020-06-03T07:02:49Z

protocol Product {
    var name: String { get }
    var expiredDate: Date { get }
    
    /**
     * Function to get all of information about product
     */
    func getProductInfo()
}
INFO