mirror of
https://github.com/phishingclub/phishingclub.git
synced 2026-02-12 16:12:44 +00:00
10 lines
175 B
Go
10 lines
175 B
Go
package model
|
|
|
|
import "github.com/google/uuid"
|
|
|
|
type RecipientGroupRecipient struct {
|
|
ID *uuid.UUID
|
|
RecipientID *uuid.UUID
|
|
RecipientGroupID *uuid.UUID
|
|
}
|