mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-07 23:54:16 -04:00
13 lines
207 B
C#
13 lines
207 B
C#
namespace API.Entities.Scrobble;
|
|
|
|
public enum ScrobbleEventSortField
|
|
{
|
|
None = 0,
|
|
Created = 1,
|
|
LastModified = 2,
|
|
Type= 3,
|
|
Series = 4,
|
|
IsProcessed = 5,
|
|
ScrobbleEventFilter = 6
|
|
}
|