Files
base/internal/domain/profileold/availability_rule.go
2026-04-10 18:25:21 +03:30

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
}