mirror of
https://git.nadeko.net/Fijxu/invidious.git
synced 2026-01-09 00:11:29 +00:00
14 lines
268 B
Crystal
14 lines
268 B
Crystal
require "json"
|
|
|
|
struct VideoMusic
|
|
include JSON::Serializable
|
|
|
|
property song : String
|
|
property album : String
|
|
property artist : String
|
|
property license : String
|
|
|
|
def initialize(@song : String, @album : String, @artist : String, @license : String)
|
|
end
|
|
end
|