9 lines
231 B
C#
9 lines
231 B
C#
using JSMR.Application.Common;
|
|
|
|
namespace JSMR.Infrastructure.Common.SupportedLanguages;
|
|
|
|
public class JapaneseLanguage : ISupportedLanguage
|
|
{
|
|
public Language Language => Language.Japanese;
|
|
public string Code => "JPN";
|
|
} |