mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-22 00:35:26 +03:00
Add GPL modules
This commit is contained in:
15
MediaBrowser.Model/Users/UserAction.cs
Normal file
15
MediaBrowser.Model/Users/UserAction.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using System;
|
||||
|
||||
namespace MediaBrowser.Model.Users
|
||||
{
|
||||
public class UserAction
|
||||
{
|
||||
public string Id { get; set; }
|
||||
public string ServerId { get; set; }
|
||||
public Guid UserId { get; set; }
|
||||
public Guid ItemId { get; set; }
|
||||
public UserActionType Type { get; set; }
|
||||
public DateTime Date { get; set; }
|
||||
public long? PositionTicks { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user