mirror of
https://github.com/bitwarden/android.git
synced 2025-01-02 22:37:34 +03:00
10 lines
162 B
C#
10 lines
162 B
C#
|
using System.Globalization;
|
|||
|
|
|||
|
namespace Bit.App.Abstractions
|
|||
|
{
|
|||
|
public interface ILocalizeService
|
|||
|
{
|
|||
|
CultureInfo GetCurrentCultureInfo();
|
|||
|
}
|
|||
|
}
|