jellyfin/MediaBrowser.Model/FileOrganization/SmartMatchInfo.cs

17 lines
401 B
C#
Raw Normal View History


namespace MediaBrowser.Model.FileOrganization
{
public class SmartMatchInfo
{
public string ItemName { get; set; }
public string DisplayName { get; set; }
public FileOrganizerType OrganizerType { get; set; }
2016-02-07 06:15:26 +01:00
public string[] MatchStrings { get; set; }
public SmartMatchInfo()
{
2016-02-07 06:15:26 +01:00
MatchStrings = new string[] { };
}
}
}