...

Source file src/jschan/app/models/board.go

Documentation: jschan/app/models

     1  package models
     2  
     3  type Board struct {
     4  	ID                string            `json:"_id"`
     5  	URI               string            `json:"uri,omitempty"`
     6  	Path              string            `json:"path,omitempty"`
     7  	LastPostTimestamp LastPostTimestamp `json:"lastPostTimestamp"`
     8  	Tags              []interface{}     `json:"tags,omitempty"`
     9  	SiteName          string            `json:"siteName,omitempty"`
    10  	SequenceValue     int               `json:"sequence_value"`
    11  	Pph               int               `json:"pph"`
    12  	Ips               int               `json:"ips"`
    13  	Settings          Settings          `json:"settings,omitempty"`
    14  	Webring           bool              `json:"webring"`
    15  	Ppd               int               `json:"ppd,omitempty"`
    16  }
    17  
    18  type Settings struct {
    19  	Sfw           bool   `json:"sfw"`
    20  	Name          string `json:"name"`
    21  	Description   string `json:"description"`
    22  	UnlistedLocal bool   `json:"unlistedLocal,omitempty"`
    23  }
    24  
    25  type LastPostTimestamp struct {
    26  	Text  string `json:"text"`
    27  	Color string `json:"color"`
    28  }
    29  

View as plain text