roadie/Roadie.Api.Library/Configuration/Converting.cs
2019-07-03 11:21:29 -05:00

15 lines
No EOL
450 B
C#

using System;
namespace Roadie.Library.Configuration
{
[Serializable]
public class Converting : IConverting
{
public string APEConvertCommand { get; set; }
public bool ConvertingEnabled { get; set; }
public bool DoDeleteAfter { get; set; }
public string FLACConvertCommand { get; set; }
public string M4AConvertCommand { get; set; }
public string OGGConvertCommand { get; set; }
}
}