Repository.cs 408 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 GitHubClient.ViewModels
  4. {
  5. public class Repository
  6. {
  7. private readonly string _name;
  8. public Repository(string name)
  9. {
  10. _name = name;
  11. }
  12. public string Name => _name;
  13. }
  14. }