mirror of
https://github.com/jellyfin/jellyfin-plugin-trakt.git
synced 2024-12-03 11:20:57 +00:00
9 lines
84 B
C#
9 lines
84 B
C#
namespace Trakt;
|
|
|
|
public enum MediaStatus
|
|
{
|
|
Watching,
|
|
Paused,
|
|
Stop
|
|
}
|