mirror of
https://github.com/sphildreth/roadie
synced 2024-11-10 06:44:12 +00:00
15 lines
No EOL
450 B
C#
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; }
|
|
}
|
|
} |