1
0

Added Category struct.

This commit is contained in:
Alexander Andreev 2023-05-10 03:18:50 +04:00
parent 3f4c2cc2f6
commit 3878ed33b3
Signed by: Arav
GPG Key ID: D22A817D95815393

6
pkg/mindflow/category.go Normal file
View File

@ -0,0 +1,6 @@
package mindflow
type Category struct {
ID int64
Name string
}