first commit

This commit is contained in:
2025-10-31 17:54:29 +07:00
commit db01b8564d
1066 changed files with 424853 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
package model
import (
"time"
"github.com/google/uuid"
)
type Subscription struct {
ID int `json:"id"`
ServiceName string `json:"service_name"`
Price int `json:"price"`
UserID uuid.UUID `json:"user_id"`
StartDate time.Time `json:"start_date"`
EndDate *time.Time `json:"end_date,omitempty"`
}