21 lines
290 B
Go
21 lines
290 B
Go
package entities
|
|
|
|
import "github.com/oklog/ulid/v2"
|
|
|
|
type Project struct {
|
|
ID ulid.ULID
|
|
Name string
|
|
CustomerID int
|
|
}
|
|
|
|
type ProjectCreate struct {
|
|
Name string
|
|
CustomerID int
|
|
}
|
|
|
|
type ProjectUpdate struct {
|
|
ID ulid.ULID
|
|
Name *string
|
|
CustomerID *int
|
|
}
|