15 lines
240 B
C#
15 lines
240 B
C#
using Newtonsoft.Json;
|
|
using Newtonsoft.Json.Converters;
|
|
|
|
namespace CodeBase.Models
|
|
{
|
|
[JsonConverter(typeof(StringEnumConverter))]
|
|
public enum Language
|
|
{
|
|
csharp,
|
|
python,
|
|
typescript,
|
|
go
|
|
}
|
|
}
|