source: ChapterX.Domain/Entities/Genre.cs

main
Last change on this file was 877c13c, checked in by kikisrbinoska <srbinoskakristina07@…>, 4 months ago

Added files

  • Property mode set to 100644
File size: 395 bytes
Line 
1using ChapterX.Domain.Shared;
2using System;
3using System.Collections.Generic;
4using System.Linq;
5using System.Text;
6using System.Threading.Tasks;
7
8namespace ChapterX.Domain.Entities
9{
10 public class Genre : IEntity
11 {
12 public int Id { get; set; }
13 public string Name { get; set; } = string.Empty;
14
15 public ICollection<HasGenre> HasGenres { get; set; } = [];
16 }
17}
Note: See TracBrowser for help on using the repository browser.