Class MusicCategory
Represents a music category (e.g. Moods, Genres, etc.).
public class MusicCategory
- Inheritance
-
objectMusicCategory
Properties
CategoryId
The ID of the category.
public int CategoryId { get; set; }
Property Value
- int
Groups
A list of groups under this category.
public List<MusicGroup> Groups { get; set; }
Property Value
- List<MusicGroup>
Name
The name of the category.
public string Name { get; set; }
Property Value
- string
Playlist
The playlist index of the category (e.g. "0").
public string Playlist { get; set; }
Property Value
- string