script-splitter/Config.cs

13 lines
501 B
C#
Raw Normal View History

using System.Collections.Generic;
public class Config
{
public string speech_service { get; set; } = "http://eligos.lan:5400";
public string sync_dropoff { get; set; } = "/home/adam/Sync/eligos documents/";
public string VODropoff {get;set; } = "./Sounds/VO";
public string titlecard_command {get;set; } = "echo";
public string titlecards_dest {get; set; } = "./notes";
public string note_command {get;set; } = "echo";
public string notes_dest {get; set; } = "./notes";
}