Skip to content

Commit

Permalink
Add CultureInfo to ILocale
Browse files Browse the repository at this point in the history
  • Loading branch information
itsyrulnikov committed Apr 16, 2024
1 parent 985e58d commit 0c48553
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Mindbox.I18n.Abstractions/ILocale.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,13 @@
// See the License for the specific language governing permissions and
// limitations under the License.

using System.Globalization;

namespace Mindbox.I18n.Abstractions;

public interface ILocale
{
string Name { get; }

CultureInfo Culture { get; }
}

0 comments on commit 0c48553

Please sign in to comment.