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