Hub-Api/models/license_commands.go

18 lines
230 B
Go
Raw Normal View History

2024-05-27 23:06:25 +03:30
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
}