CultureOptions.cs 704 B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. namespace GreenTree.Strohrmann.ERP.Services.Localization
  6. {
  7. public class CultureOptions
  8. {
  9. /// <summary>
  10. /// Culture to be set as application culture
  11. /// </summary>
  12. public string DefaultCulture { get; set; }
  13. ///// <summary>
  14. ///// 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>
  15. ///// if you want the request and response handled in the system or <b>DefaultCulture</b>
  16. ///// </summary>
  17. //public bool UseRequestCulture { get; set; }
  18. }
  19. }