using System; using System.Collections.Generic; #nullable disable namespace Teso_API.Models { public partial class Report { public Report() { ReportedContents = new HashSet(); } public int Id { get; set; } public string Description { get; set; } public virtual ICollection ReportedContents { get; set; } } }