Skip to content

Commit

Permalink
#15 #18 Model for message in microservice for adding and remove fund
Browse files Browse the repository at this point in the history
  • Loading branch information
José Antonio Córdoba Gómez committed Jan 8, 2021
1 parent 6e537e2 commit bace0dc
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions funds/src/main/kotlin/com/pepe/rest/resteasyjackson/Message.kt
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
package com.pepe.rest.resteasyjackson

class Message{
var msg: String? = null
var details: String? = null

constructor() {}

constructor(msg: String?, details: String?){
this.msg = msg
this.details = details
}
}

0 comments on commit bace0dc

Please sign in to comment.