!wip added music into the newsletter and also added issue reporting to the albums

This commit is contained in:
TidusJar 2018-08-28 09:29:42 +01:00
parent fd8bfeb1e4
commit 82c353a727
8 changed files with 165 additions and 28 deletions

View file

@ -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,
}
}