2024-06-03 14:40:50 +07:00

13 lines
185 B
Go

package studio
type StudioStatus string
const (
Active StudioStatus = "active"
Inactive StudioStatus = "inactive"
)
func (b StudioStatus) toString() string {
return string(b)
}