PageRenderTime 42ms CodeModel.GetById 18ms RepoModel.GetById 0ms app.codeStats 0ms

/MvcMusicStore/Models/Genre.cs

#
C# | 12 lines | 11 code | 1 blank | 0 comment | 0 complexity | b74e2dc3de6f759d375a9d0cafd33c07 MD5 | raw file
  1. using System.Collections.Generic;
  2. namespace MvcMusicStore.Models
  3. {
  4. public partial class Genre
  5. {
  6. public int GenreId { get; set; }
  7. public string Name { get; set; }
  8. public string Description { get; set; }
  9. public List<Album> Albums { get; set; }
  10. }
  11. }