PageRenderTime 55ms CodeModel.GetById 29ms RepoModel.GetById 0ms app.codeStats 0ms

/project/core/Security/UserName.cs

https://bitbucket.org/davcamer/ccnet
C# | 26 lines | 23 code | 3 blank | 0 comment | 0 complexity | 6dea7fa0917270b52fb89d32fc0c43ab MD5 | raw file
Possible License(s): LGPL-2.0, GPL-2.0
  1. using Exortech.NetReflector;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace ThoughtWorks.CruiseControl.Core.Security
  6. {
  7. [ReflectorType("userName")]
  8. public class UserName
  9. {
  10. private string userName;
  11. public UserName() { }
  12. public UserName(string name)
  13. {
  14. userName = name;
  15. }
  16. [ReflectorProperty("name")]
  17. public string Name
  18. {
  19. get { return userName; }
  20. set { userName = value; }
  21. }
  22. }
  23. }