models

package
v0.0.0-...-3f93e99 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 8, 2023 License: GPL-3.0 Imports: 1 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Board

type Board struct {
	ID          bson.ObjectId   `bson:"_id,omitempty"`
	Owner       string          `bson:"owner"`
	Name        string          `bson:"name"`
	Description string          `bson:"description"`
	Layout      string          `bson:"layout"`
	State       string          `bson:"state"`
	Shared      bool            `bson:"shared"`
	Children    []bson.ObjectId `bson:"children"`
	Lanes       []Lane          `bson:"lanes"`
	Cards       []Card          `bson:"cards"`
}

Board entity

type BoardListModel

type BoardListModel struct {
	ID          bson.ObjectId `bson:"_id,omitempty"`
	Owner       string        `bson:"owner"`
	Name        string        `bson:"name"`
	Description string        `bson:"description"`
	Layout      string        `bson:"layout"`
	State       string        `bson:"state"`
	Shared      bool          `bson:"shared"`
}

BoardListModel type

type Card

type Card struct {
	ID          bson.ObjectId `bson:"_id,omitempty"`
	Name        string        `bson:"name"`
	Description string        `bson:"description"`
}

Card entity

type Lane

type Lane struct {
	ID          bson.ObjectId   `bson:"_id,omitempty"`
	Kind        string          `bson:"kind"`
	Name        string          `bson:"name"`
	Description string          `bson:"description"`
	Layout      string          `bson:"layout"`
	Children    []bson.ObjectId `bson:"children"`
}

Lane entity

type LaneListModel

type LaneListModel struct {
	ID          bson.ObjectId `bson:"_id,omitempty"`
	Kind        string        `bson:"kind"`
	Name        string        `bson:"name"`
	Description string        `bson:"description"`
	Layout      string        `bson:"layout"`
}

LaneListModel type

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL