Files
Crudelis 85c7adeb2a New Project
Ani 폴더 리스트 가져오는 API
2024-11-12 23:35:40 +09:00

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; }
}
}