mirror of
https://github.com/phishingclub/phishingclub.git
synced 2026-07-04 11:27:57 +02:00
83f9e8f279
fix orphans in dynamic groups not included Signed-off-by: Ronni Skansing <rskansing@gmail.com>
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.String127 `json:"key"`
|
|
Value vo.OptionalString1MB `json:"value"`
|
|
}
|