9 lines
229 B
C#
9 lines
229 B
C#
using JSMR.Application.Common;
|
|
|
|
namespace JSMR.Infrastructure.Common.SupportedLanguages;
|
|
|
|
public class EnglishLanguage : ISupportedLanguage
|
|
{
|
|
public Language Language => Language.English;
|
|
public string Code => "ENG";
|
|
} |