mirror of
https://github.com/bitwarden/android.git
synced 2024-12-30 21:08:33 +03:00
9 lines
162 B
C#
9 lines
162 B
C#
using System.Globalization;
|
|
|
|
namespace Bit.App.Abstractions
|
|
{
|
|
public interface ILocalizeService
|
|
{
|
|
CultureInfo GetCurrentCultureInfo();
|
|
}
|
|
}
|