Renamed Id to ID, following GoLang convention

This commit is contained in:
Deluan
2020-01-09 23:33:01 -05:00
committed by Deluan Quintão
parent 018352463f
commit 40904b220e
35 changed files with 122 additions and 122 deletions
+2 -2
View File
@@ -3,9 +3,9 @@ package domain
import "time"
type Album struct {
Id string
ID string
Name string
ArtistId string `parent:"artist"`
ArtistID string `parent:"artist"`
CoverArtPath string
CoverArtId string
Artist string