add scenarios methods

This commit is contained in:
2026-07-13 23:48:20 +07:00
parent 487b1aa436
commit db746f2123
17 changed files with 3620 additions and 118 deletions
+17
View File
@@ -0,0 +1,17 @@
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
}