KeyValueItem.cs 884 B

1234567891011121314151617181920212223242526272829303132
  1. // ----------------------------------------------------------
  2. // <copyright file="KeyValueItem.cs" company="Microsoft">
  3. // Copyright (c) Microsoft Corporation. All rights reserved.
  4. // </copyright>
  5. // ----------------------------------------------------------
  6. namespace Microsoft.Hawaii.KeyValue.Client
  7. {
  8. using System;
  9. /// <summary>
  10. /// Entity class to represent a key-value pair
  11. /// </summary>
  12. public class KeyValueItem
  13. {
  14. /// <summary>
  15. /// Gets or sets the key
  16. /// </summary>
  17. public string Key { get; set; }
  18. /// <summary>
  19. /// Gets or sets the value
  20. /// </summary>
  21. public string Value { get; set; }
  22. /// <summary>
  23. /// Gets or sets the last modified date
  24. /// </summary>
  25. public DateTime LastModifiedDate { get; set; }
  26. }
  27. }