using System; using System.Collections.Generic; #nullable disable namespace DTO.Models { public partial class PostDTO { public int PostId { get; set; } public string Title { get; set; } public string Content { get; set; } public int BlogId { get; set; } public virtual BlogDTO Blog { get; set; } } }