roadie/Roadie.Api.Library/Configuration/Converting.cs

13 lines
329 B
C#
Raw Normal View History

2018-11-02 21:04:49 +00:00
using System;
2018-11-04 20:33:37 +00:00
namespace Roadie.Library.Configuration
2018-11-02 21:04:49 +00:00
{
[Serializable]
public class Converting
{
2018-11-04 20:33:37 +00:00
public string APEConvertCommand { get; set; }
2018-11-02 21:04:49 +00:00
public bool DoDeleteAfter { get; set; }
public string M4AConvertCommand { get; set; }
public string OGGConvertCommand { get; set; }
}
2018-11-04 20:33:37 +00:00
}