21 lines
300 B
Go
21 lines
300 B
Go
|
|
package domain
|
||
|
|
|
||
|
|
import "time"
|
||
|
|
|
||
|
|
type Tenant struct {
|
||
|
|
ID int64
|
||
|
|
Name string
|
||
|
|
Status string
|
||
|
|
FrozenAt *time.Time
|
||
|
|
CreatedAt time.Time
|
||
|
|
UpdatedAt time.Time
|
||
|
|
}
|
||
|
|
|
||
|
|
type TenantMembership struct {
|
||
|
|
ID int64
|
||
|
|
TenantID int64
|
||
|
|
UserID int64
|
||
|
|
TenantRole string
|
||
|
|
CreatedAt time.Time
|
||
|
|
}
|