Rename domain to model
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
package model
|
||||
|
||||
type MediaFolder struct {
|
||||
ID string
|
||||
Name string
|
||||
Path string
|
||||
}
|
||||
|
||||
type MediaFolders []MediaFolder
|
||||
|
||||
type MediaFolderRepository interface {
|
||||
GetAll() (MediaFolders, error)
|
||||
}
|
||||
Reference in New Issue
Block a user