Item

struct Item: Codable, Identifiable, Equatable

A Music Match Item

  • id

    The ID of the Kodi Song

    Declaration

    Swift

    var id: Library.ID
  • The title of the song

    Declaration

    Swift

    var title: String
  • The album title of the song

    Declaration

    Swift

    var album: String
  • The artist of the song

    Declaration

    Swift

    var artist: String
  • The track number of the song

    Declaration

    Swift

    var track: Int
  • Bool if Kodi song is matched with Music

    Declaration

    Swift

    var matched: Bool = false
  • Kodi values

    Declaration

    Swift

    var kodi = Values()
  • Music values

    Declaration

    Swift

    var music = Values()
  • Sync values

    Declaration

    Swift

    var sync = Values()
  • Calculated stuff

    Bool if the item is in sync or not

    Declaration

    Swift

    var itemInSync: Bool