RepositoryResponse

data class RepositoryResponse<Data>(val data: Data?, val message: Message)

Data class representing the response of Repository

Parameters

data

represent what the query return

message

returned by the Repository

Constructors

Link copied to clipboard
constructor(data: Data?, message: Message)

Properties

Link copied to clipboard
val data: Data?
Link copied to clipboard