Lidarr/src/Lidarr.Api.V1/Config/NamingConfigResource.cs

20 lines
694 B
C#
Raw Normal View History

2017-09-04 02:20:56 +00:00
using Lidarr.Http.REST;
2017-10-31 01:28:29 +00:00
namespace Lidarr.Api.V1.Config
2017-09-04 02:20:56 +00:00
{
public class NamingConfigResource : RestResource
{
public bool RenameTracks { get; set; }
public bool ReplaceIllegalCharacters { get; set; }
public string StandardTrackFormat { get; set; }
public string MultiDiscTrackFormat { get; set; }
2017-09-04 02:20:56 +00:00
public string ArtistFolderFormat { get; set; }
public bool IncludeArtistName { get; set; }
public bool IncludeAlbumTitle { get; set; }
public bool IncludeQuality { get; set; }
public bool ReplaceSpaces { get; set; }
public string Separator { get; set; }
public string NumberStyle { get; set; }
}
}