jellyfin/Emby.Naming/AudioBook/AudioBookFilePathParserResult.cs

14 lines
301 B
C#
Raw Normal View History

2018-09-12 19:26:21 +02:00
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; }
}
}