namespace Emby.Naming.Audio { public class MultiPartResult { /// /// Gets or sets the name. /// /// The name. public string Name { get; set; } /// /// Gets or sets the part. /// /// The part. public string Part { get; set; } /// /// Gets or sets a value indicating whether this instance is multi part. /// /// true if this instance is multi part; otherwise, false. public bool IsMultiPart { get; set; } } }