Newsletter almost finished. !wip

This commit is contained in:
Jamie 2018-03-22 09:18:33 +00:00
parent df95962aa6
commit 9767380f83
23 changed files with 1811 additions and 31 deletions

View file

@ -0,0 +1,19 @@
using System;
using System.ComponentModel.DataAnnotations.Schema;
namespace Ombi.Store.Entities
{
[Table("RecentlyAddedLog")]
public class RecentlyAddedLog : Entity
{
public RecentlyAddedType Type { get; set; }
public int ContentId { get; set; } // This is dependant on the type
public DateTime AddedAt { get; set; }
}
public enum RecentlyAddedType
{
Plex,
Emby
}
}