New Project

Ani 폴더 리스트 가져오는 API
This commit is contained in:
2024-11-12 23:35:40 +09:00
parent 4cd0f2b72a
commit 85c7adeb2a
10 changed files with 723 additions and 0 deletions

11
VideoArchiveAPI/Config.cs Normal file
View File

@@ -0,0 +1,11 @@
namespace VideoArchiveAPI
{
public class Config
{
public const string SectionName = "Config";
public int Port { get; set; }
public string Location { get; set; }
}
}