10 lines
134 B
Go

package entities
import "github.com/oklog/ulid/v2"
type Project struct {
ID ulid.ULID
Name string
CustomerID int
}