Hub-Api/models/plan_commands.go

21 lines
355 B
Go
Raw Normal View History

2024-05-27 23:06:25 +03:30
package models
import "time"
type CreatePlanCommand struct {
Price uint
Priod time.Time
Partnership bool
PercentageOfOwner uint
Modified_by string
}
type UpdatePlanCommand struct {
Price uint
Priod time.Time
Partnership bool
PercentageOfOwner uint
Modified_by string
}