mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-30 11:38:32 -07:00
Newsletter almost finished. !wip
This commit is contained in:
parent
df95962aa6
commit
9767380f83
23 changed files with 1811 additions and 31 deletions
19
src/Ombi.Store/Entities/RecentlyAddedLog.cs
Normal file
19
src/Ombi.Store/Entities/RecentlyAddedLog.cs
Normal 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
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue