mirror of
https://github.com/emo2007/block-accounting.git
synced 2024-11-10 12:36:28 +00:00
10 lines
218 B
Go
10 lines
218 B
Go
package domain
|
|
|
|
type Organization struct {
|
|
Id string `json:"id"`
|
|
Name string `json:"name"`
|
|
Address string `json:"address"`
|
|
CreatedAt uint64 `json:"created_at"`
|
|
UpdatedAt uint64 `json:"updated_at"`
|
|
}
|