12 lines
228 B
C#
12 lines
228 B
C#
namespace VideoArchiveAPI
|
|
{
|
|
|
|
public class Config
|
|
{
|
|
public const string SectionName = "Config";
|
|
public int Port { get; set; }
|
|
public string Location { get; set; }
|
|
}
|
|
|
|
}
|