generated from VLADIMIR/template
18 lines
281 B
Go
18 lines
281 B
Go
package repos
|
|
|
|
import "time"
|
|
|
|
type Scenario struct {
|
|
ID int
|
|
Name string
|
|
Description *string
|
|
Image *string
|
|
Scenario string
|
|
Author *User
|
|
Status string
|
|
UpdatedAt time.Time
|
|
CreatedAt time.Time
|
|
PublishedAt *time.Time
|
|
IsDeleted bool
|
|
}
|