jellyfin/MediaBrowser.Api/Reports/Common/ReportDisplayType.cs

15 lines
200 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
namespace MediaBrowser.Api.Reports
{
public enum ReportDisplayType
{
None,
Screen,
Export,
ScreenExport
}
}