github.com/resonatecoop/user-api@v1.0.0-13.0.20220915120639-05dc9c04014a/model/tenant.go (about)

     1  package model
     2  
     3  import uuid "github.com/google/uuid"
     4  
     5  // Tenant table
     6  type Tenant struct {
     7  	Id     uuid.UUID `bun:"type:uuid,default:uuid_generate_v4()"`
     8  	Name   string    `json:"name"`
     9  	Active bool      `json:"active"`
    10  }