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