using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace GreenTree.Strohrmann.ERP.Services.Localization
{
public class CultureOptions
{
///
/// Culture to be set as application culture
///
public string DefaultCulture { get; set; }
/////
///// Determines if the culture of the request will be handled in the client culture. True if you want this behaviour, False
///// if you want the request and response handled in the system or DefaultCulture
/////
//public bool UseRequestCulture { get; set; }
}
}