github.com/ngocphuongnb/tetua@v0.0.7-alpha/app/entities/setting.go (about)

     1  package entities
     2  
     3  import "time"
     4  
     5  type Setting struct {
     6  	ID        int        `json:"id,omitempty"`
     7  	CreatedAt *time.Time `json:"created_at,omitempty"`
     8  	UpdatedAt *time.Time `json:"updated_at,omitempty"`
     9  	DeletedAt *time.Time `json:"deleted_at,omitempty"`
    10  	Name      string     `json:"name,omitempty"`
    11  	Value     string     `json:"value,omitempty"`
    12  	Type      string     `json:"type,omitempty"`
    13  }