package model import "time" type ShareLink struct { ID string ResourceType string ResourceID string Token string Password *string ExpiresAt *time.Time DownloadCount int MaxDownloads *int CreatedBy string CreatedAt time.Time } type ShareInfo struct { Token string ResourceType string FileName string FileSize int64 HasPassword bool ExpiresAt *time.Time }