Adds article and feed models

This commit is contained in:
Dennis Schoepf 2024-05-14 22:28:34 +02:00
parent 3d24617ede
commit e6cd27855f
2 changed files with 21 additions and 0 deletions

8
internal/model/feed.go Normal file
View file

@ -0,0 +1,8 @@
package model
type Feed struct {
ID int64
Name string
Url string
UserID int64
}