TestItem.cs 472 B

1234567891011121314151617
  1. // Copyright (c) The Perspex Project. All rights reserved.
  2. // Licensed under the MIT license. See licence.md file in the project root for full license information.
  3. namespace XamlTestApplication.ViewModels
  4. {
  5. public class TestItem
  6. {
  7. public TestItem(string header, string subheader)
  8. {
  9. Header = header;
  10. SubHeader = subheader;
  11. }
  12. public string Header { get; }
  13. public string SubHeader { get; }
  14. }
  15. }