debut ajout compte joint
This commit is contained in:
16
internal/jointaccount/model.go
Normal file
16
internal/jointaccount/model.go
Normal file
@@ -0,0 +1,16 @@
|
||||
package jointaccount
|
||||
|
||||
import "time"
|
||||
|
||||
type Jointaccount struct {
|
||||
JointaccountEditable
|
||||
UserId string `json:"userId,omitempty"`
|
||||
}
|
||||
|
||||
type JointaccountEditable struct {
|
||||
ID string `json:"id,omitempty"`
|
||||
Name string `json:"name"`
|
||||
Provider string `json:"provider"`
|
||||
CreatedAt time.Time `json:"createdAt,omitempty"`
|
||||
UpdatedAt *time.Time `json:"updatedAt,omitempty"`
|
||||
}
|
||||
Reference in New Issue
Block a user