mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 18:42:52 -07:00
21 lines
325 B
C#
21 lines
325 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
|
|
namespace MediaBrowser.Api.Reports
|
|
{
|
|
public enum HeaderActivitiesMetadata
|
|
{
|
|
None,
|
|
Name,
|
|
Overview,
|
|
ShortOverview,
|
|
Type,
|
|
Date,
|
|
UserPrimaryImageTag,
|
|
Severity,
|
|
Item,
|
|
User
|
|
}
|
|
}
|