mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-23 09:14:45 +03: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
|
||
|
|
}
|
||
|
|
}
|