mirror of
https://github.com/Unkn0wnCat/calapi.git
synced 2025-04-29 01:56:19 +02:00
8 lines
167 B
Go
8 lines
167 B
Go
package model
|
|
|
|
type Calendar struct {
|
|
ID string `json:"id"`
|
|
DbID uint64
|
|
Name string `json:"name"`
|
|
Description string `json:"description"`
|
|
}
|