mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-30 03:28:28 -07:00
!wip added music into the newsletter and also added issue reporting to the albums
This commit is contained in:
parent
fd8bfeb1e4
commit
82c353a727
8 changed files with 165 additions and 28 deletions
|
@ -11,18 +11,21 @@ namespace Ombi.Store.Entities
|
|||
public int ContentId { get; set; } // This is dependant on the type, it's either TMDBID or TVDBID
|
||||
public int? EpisodeNumber { get; set; }
|
||||
public int? SeasonNumber { get; set; }
|
||||
public string AlbumId { get; set; }
|
||||
public DateTime AddedAt { get; set; }
|
||||
}
|
||||
|
||||
public enum RecentlyAddedType
|
||||
{
|
||||
Plex = 0,
|
||||
Emby = 1
|
||||
Emby = 1,
|
||||
Lidarr = 2
|
||||
}
|
||||
|
||||
public enum ContentType
|
||||
{
|
||||
Parent = 0,
|
||||
Episode = 1
|
||||
Episode = 1,
|
||||
Album = 2,
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue