7 lines
136 B
C#
7 lines
136 B
C#
namespace JSMR.Infrastructure.Common.Locales;
|
|
|
|
public interface ILocale
|
|
{
|
|
string Abbreviation { get; }
|
|
string Code { get; }
|
|
} |