мини рефакторинг

добавлены пачноты
This commit is contained in:
2026-07-24 14:07:34 +04:00
parent eb8dac7627
commit ae1d7a12b8
9 changed files with 31 additions and 408 deletions

14
CodeBase/Models/Enums.cs Normal file
View File

@@ -0,0 +1,14 @@
using Newtonsoft.Json;
using Newtonsoft.Json.Converters;
namespace CodeBase.Models
{
[JsonConverter(typeof(StringEnumConverter))]
public enum Language
{
csharp,
python,
typescript,
go
}
}