mirror of
https://github.com/phishingclub/phishingclub.git
synced 2026-02-12 16:12:44 +00:00
15 lines
326 B
Go
15 lines
326 B
Go
package model
|
|
|
|
import (
|
|
"github.com/google/uuid"
|
|
"github.com/oapi-codegen/nullable"
|
|
"github.com/phishingclub/phishingclub/vo"
|
|
)
|
|
|
|
// Option is an Option
|
|
type Option struct {
|
|
ID nullable.Nullable[uuid.UUID] `json:"id"`
|
|
Key vo.String64 `json:"key"`
|
|
Value vo.OptionalString1MB `json:"value"`
|
|
}
|