You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
849 B
39 lines
849 B
using System;
|
|
using System.Collections;
|
|
|
|
namespace MediaBrowser.Controller.Entities
|
|
{
|
|
public class LinkedChild
|
|
{
|
|
public string Path { get; set; }
|
|
public LinkedChildType Type { get; set; }
|
|
}
|
|
|
|
public enum LinkedChildType
|
|
{
|
|
Manual = 1,
|
|
Shortcut = 2
|
|
}
|
|
|
|
public class LinkedChildComparer : IComparer
|
|
{
|
|
public int Compare(object x, object y)
|
|
{
|
|
var a = (LinkedChild)x;
|
|
|
|
var b = (LinkedChild)y;
|
|
|
|
if (!string.Equals(a.Path, b.Path, StringComparison.OrdinalIgnoreCase))
|
|
{
|
|
return string.Compare(a.Path, b.Path, StringComparison.OrdinalIgnoreCase);
|
|
}
|
|
if (a.Type != b.Type)
|
|
{
|
|
return a.Type.CompareTo(b.Type);
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
}
|
|
}
|