source: ChapterX.Domain/Entities/ReadingList.cs@ a6e33d1

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

Added files

  • Property mode set to 100644
File size: 689 bytes
RevLine 
[877c13c]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 ReadingList : IEntity
11 {
12 public int Id { get; set; }
13 public string Name { get; set; } = string.Empty;
14 public string? Content { get; set; }
15 public bool IsPublic { get; set; }
16 public DateTime CreatedAt { get; set; }
17 public DateTime UpdatedAt { get; set; }
18
19 public int UserId { get; set; }
20 public User User { get; set; } = null!;
21 public ICollection<ReadingListItems> ReadingListItems { get; set; } = [];
22
23 }
24}
Note: See TracBrowser for help on using the repository browser.