17 lines
255 B
Go
17 lines
255 B
Go
package profile
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/google/uuid"
|
|
)
|
|
|
|
type AvailabilityException struct {
|
|
ID uuid.UUID
|
|
ProfileID uuid.UUID
|
|
Date time.Time
|
|
Start *time.Time
|
|
End *time.Time
|
|
DayUnavailable bool
|
|
}
|