Semaphore/db/Alias.go

12 lines
129 B
Go
Raw Normal View History

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