Pretty much finished the actual newsletter. Still need to work on the UI !wip

This commit is contained in:
Jamie 2018-03-22 12:27:01 +00:00
parent 9767380f83
commit 1528cdfc03
15 changed files with 463 additions and 24 deletions

View file

@ -7,13 +7,20 @@ namespace Ombi.Store.Entities
public class RecentlyAddedLog : Entity
{
public RecentlyAddedType Type { get; set; }
public ContentType ContentType { get; set; }
public int ContentId { get; set; } // This is dependant on the type
public DateTime AddedAt { get; set; }
}
public enum RecentlyAddedType
{
Plex,
Emby
Plex = 0,
Emby = 1
}
public enum ContentType
{
Parent = 0,
Episode = 1
}
}