21 lines
355 B
Go
21 lines
355 B
Go
|
|
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
|
||
|
|
}
|