jellyfin/MediaBrowser.Api/Reports/Common/ReportExportType.cs
2015-04-17 21:12:25 +02:00

13 lines
158 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
namespace MediaBrowser.Api.Reports
{
public enum ReportExportType
{
CSV,
Excel
}
}