Added accesslevel model

This commit is contained in:
KD
2025-03-07 22:20:53 -05:00
parent 630db86d64
commit 51acb0d978
+8
View File
@@ -0,0 +1,8 @@
package models
type AccessLevel struct {
Id int `json:"id"`
Level string `json:"level"`
SongId int `json:"song_id"`
}