14 lines
301 B
C#
14 lines
301 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Emby.Naming.AudioBook
|
|
{
|
|
public class AudioBookFilePathParserResult
|
|
{
|
|
public int? PartNumber { get; set; }
|
|
public int? ChapterNumber { get; set; }
|
|
public bool Success { get; set; }
|
|
}
|
|
}
|