mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-15 01:32:55 -07:00
Added the watchlist import for movies
This commit is contained in:
parent
df59b46a78
commit
f41eea89a0
55 changed files with 1824 additions and 136 deletions
15
src/Ombi.Core/Helpers/ICurrentUser.cs
Normal file
15
src/Ombi.Core/Helpers/ICurrentUser.cs
Normal file
|
@ -0,0 +1,15 @@
|
|||
using Ombi.Store.Entities;
|
||||
using System.Security.Principal;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Ombi.Core.Helpers
|
||||
{
|
||||
public interface ICurrentUser
|
||||
{
|
||||
string Username { get; }
|
||||
|
||||
Task<OmbiUser> GetUser();
|
||||
void SetUser(OmbiUser user);
|
||||
IIdentity Identity { get; set; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue