/CRMCustom/CRMCustom.GUI/acm/acmresources/securitysetting.cs

http://Sakkara.codeplex.com · C# · 29 lines · 14 code · 5 blank · 10 comment · 0 complexity · 7da4dc3ab2ddb9e2749e75c85e5aa973 MD5 · raw file

  1. //---------------------------------------------------------------------------------
  2. // Microsoft (R) Windows Azure Platform AppFabric SDK
  3. // Software Development Kit
  4. //
  5. // Copyright (c) Microsoft Corporation. All rights reserved.
  6. //
  7. // THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND,
  8. // EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES
  9. // OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR PURPOSE.
  10. //---------------------------------------------------------------------------------
  11. namespace Microsoft.AccessControl.Samples.AcmTool.Resources
  12. {
  13. using System.Xml.Serialization;
  14. [XmlRootAttribute("Security", Namespace = Constants.ResourceNameSpace)]
  15. public class SecuritySetting
  16. {
  17. public SecuritySetting()
  18. {
  19. }
  20. public string Algorithm { get; set; }
  21. public string CurrentKey { get; set; }
  22. public string PreviousKey { get; set; }
  23. }
  24. }