PageRenderTime 25ms CodeModel.GetById 1ms RepoModel.GetById 0ms app.codeStats 0ms

/Source/ResourceManagement.Client/WsEnumeration/LocalePreference.cs

#
C# | 16 lines | 15 code | 1 blank | 0 comment | 0 complexity | a67bd66e4ecb56e04572e8d4c7a49759 MD5 | raw file
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Xml.Serialization;
  4. using System.Text;
  5. namespace Microsoft.ResourceManagement.Client.WsEnumeration
  6. {
  7. [XmlRoot(Namespace=Constants.Rm.Namespace)]
  8. public class LocalePreference
  9. {
  10. [XmlElement()]
  11. public String Locale;
  12. [XmlElement()]
  13. public int PreferenceValue;
  14. }
  15. }