17 lines
240 B
Go
17 lines
240 B
Go
package profile
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/google/uuid"
|
|
)
|
|
|
|
type AvailabilityRule struct {
|
|
ID uuid.UUID
|
|
ProfileID uuid.UUID
|
|
Title string
|
|
Weekday int // 0-6, where 0 is Sunday
|
|
Start time.Time
|
|
End time.Time
|
|
}
|