jellyfin-server/MediaBrowser.Model/FileOrganization/SmartMatchInfo.cs

17 lines
388 B
C#
Raw Normal View History


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