subscriber.go

8 lines
1 2 3 4 5 6 7 8
package models

import "congo.gg/pkg/database"

type Subscriber struct {
	database.Model
	Email string
}