using System; using System.Collections.Generic; #nullable disable namespace DTO.Models { public partial class BlogDTO { public BlogDTO() { Posts = new HashSet(); } public int BlogId { get; set; } public string Url { get; set; } public virtual ICollection Posts { get; set; } } }