hikan.ru/mvc/models/page.go

12 lines
404 B
Go
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

package models
// Контекст страницы
type Page struct {
AccessLvl int //уровень доступа юзера
Title string // тайтл странциы
PostsSublist Posts
Number int // номер страницы
Data string // строка с данными (например искомая строка для поиска)
SiteCtx *Site
}