blob: 9399c40c45e70f32071be76031e464e5f48e877f [file] [log] [blame]
package ticket
import (
"time"
"github.com/merico-dev/lake/models/domainlayer"
)
type Board struct {
domainlayer.DomainEntity
Name string
Description string
Url string
CreatedDate *time.Time
}
type BoardSprint struct {
BoardId string `gorm:"primaryKey"`
SprintId string `gorm:"primaryKey"`
}