syntax = "proto3";

package music;

option go_package = "github.com/echofi-ai/backend/types/music";

import "google/protobuf/timestamp.proto";

// Album message represents an album
message Album {
  // Album ID
  int32 album_id = 1;
  
  // Album title
  string title = 2;
  
  // Artist ID
  int32 artist_id = 3;
  
  // Release date
  google.protobuf.Timestamp release_date = 4;
  
  // Cover image URL
  string cover_url = 5;
  
  // Genre ID
  int32 genre_id = 6;
}
