Yimaru-BackEnd/internal/domain/company.go
2025-04-07 03:45:52 +03:00

10 lines
295 B
Go

package domain
// Company represents the client that we will contract the services with
// they are the ones that manage the branches and branch managers
// they will have their own wallet that they will use to distribute to the branch wallets
type Company struct {
ID int64
Name string
}