mirror of
https://github.com/sphildreth/roadie
synced 2024-12-03 09:29:13 +00:00
13 lines
No EOL
329 B
C#
13 lines
No EOL
329 B
C#
using System;
|
|
|
|
namespace Roadie.Library.Configuration
|
|
{
|
|
[Serializable]
|
|
public class Converting
|
|
{
|
|
public string APEConvertCommand { get; set; }
|
|
public bool DoDeleteAfter { get; set; }
|
|
public string M4AConvertCommand { get; set; }
|
|
public string OGGConvertCommand { get; set; }
|
|
}
|
|
} |