Semaphore/db/Alias.go
2024-12-15 13:41:50 +05:00

12 lines
129 B
Go

package db
type Alias struct {
ID int
Alias string
ProjectID int
}
type Aliasable interface {
ToAlias() Alias
}