Skip to content

Latest commit

History

History
85 lines (71 loc) 路 2.42 KB

DOCUMENTATION.md

File metadata and controls

85 lines (71 loc) 路 2.42 KB

Makima's documentation

Models

Database

Element Type Example
ID string "0000001"
Path string "E:\Series"
SelectedSeries SeriesModel
Series ObservableCollection<SeriesModel>

JSON Format

{
  "ID": null,
  "Name": null,
  "SelectedSeries": null,
  "Series": []
}

Series

Element Type Example
ID string "0000001"
Name string "Chainsawman"
Splash ImageSource "https://t.com/i.jpg"
Seasons ObservableCollection<SeasonModel>
LatestSeason string
LatestEpisode string

JSON Format

{
  "ID": null,
  "Name": null,
  "Splash": null,
  "Seasons": [],
  "LatestSeason": null,
  "LatestEpisode": null
}

Season

Element Type Example
ID string "1000001"
Name string "Season 1"
Episodes ObservableCollection<EpisodeModel>

JSON Format

{
  "ID": null,
  "Name": null,
  "Episodes": []
}

Episode

Element Type Example
ID string "1100001"
Name string "1.mkv"

JSON Format

{
  "ID": null,
  "Name": null
}