jellyfin/MediaBrowser.Api/Reports/Common/ReportFieldType.cs
2015-05-18 20:37:29 +02:00

20 lines
233 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
namespace MediaBrowser.Api.Reports
{
public enum ReportFieldType
{
String,
Boolean,
Date,
Time,
DateTime,
Int,
Image,
Object,
Minutes
}
}