18 lines
230 B
Go
18 lines
230 B
Go
|
|
package models
|
||
|
|
|
||
|
|
import "time"
|
||
|
|
|
||
|
|
type CreateLicenseCommand struct {
|
||
|
|
Plan_id uint
|
||
|
|
Period time.Time
|
||
|
|
Modified_by string
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
type UpdateLicenseCommand struct {
|
||
|
|
Plan_id uint
|
||
|
|
Period time.Time
|
||
|
|
Modified_by string
|
||
|
|
}
|
||
|
|
|