mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-20 07:45:26 +03:00
20 lines
441 B
C#
20 lines
441 B
C#
|
|
|
|||
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
|
|||
|
|
namespace MediaBrowser.Model.FileOrganization
|
|||
|
|
{
|
|||
|
|
public class SmartMatchInfo
|
|||
|
|
{
|
|||
|
|
public Guid Id { get; set; }
|
|||
|
|
public string Name { get; set; }
|
|||
|
|
public FileOrganizerType OrganizerType { get; set; }
|
|||
|
|
public List<string> MatchStrings { get; set; }
|
|||
|
|
|
|||
|
|
public SmartMatchInfo()
|
|||
|
|
{
|
|||
|
|
MatchStrings = new List<string>();
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|