PageRenderTime 53ms CodeModel.GetById 19ms RepoModel.GetById 0ms app.codeStats 0ms

/Source/Samples/Blog/Bifrost.Samples.Blog.Views/Security/User.cs

#
C# | 13 lines | 11 code | 2 blank | 0 comment | 0 complexity | a8c3498dcdae78343bfdec76143a6be5 MD5 | raw file
Possible License(s): CC-BY-SA-3.0
  1. using System;
  2. using Bifrost.Views;
  3. namespace Bifrost.Samples.Blog.Views.Security
  4. {
  5. public class User : IHaveId
  6. {
  7. public Guid Id { get; set; }
  8. public string UserName { get; set; }
  9. public string Password { get; set; }
  10. }
  11. }