<img width="634" alt="Screenshot 2024-11-09 at 11 13 38 AM" src="https://github.com/user-attachments/assets/156d86ae-1bf3-411a-9dfb-f992d9e34abd">
19 lines
514 B
Go
19 lines
514 B
Go
package ente
|
|
|
|
// BlackFridayOffer represents the latest Black Friday Offer
|
|
type BlackFridayOffer struct {
|
|
ID string `json:"id"`
|
|
Storage int64 `json:"storage"`
|
|
Price string `json:"price"`
|
|
OldPrice string `json:"oldPrice"`
|
|
PeriodInYears string `json:"periodInYears"`
|
|
PaymentLink string `json:"paymentLink"`
|
|
}
|
|
|
|
type BlackFridayOfferPerCountry map[string][]BlackFridayOffer
|
|
|
|
const (
|
|
BF2024EmailTemplate = "bf_2024.html"
|
|
BF2024EmailSubject = "Black Friday deal confirmation"
|
|
)
|