mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-16 02:02:55 -07:00
11 lines
291 B
C#
11 lines
291 B
C#
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Ombi.Store.Entities
|
|
{
|
|
[Table(nameof(PlexWatchlistUserError))]
|
|
public class PlexWatchlistUserError : Entity
|
|
{
|
|
public string UserId { get; set; }
|
|
public string MediaServerToken { get; set; }
|
|
}
|
|
}
|