Changeset 8f8226c for PostgreSqlDotnetCore/Models/BlogPostAnswers.cs
- Timestamp:
- 08/20/24 15:04:19 (3 months ago)
- Branches:
- main
- Children:
- 6782104
- Parents:
- ae6c071
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
PostgreSqlDotnetCore/Models/BlogPostAnswers.cs
rae6c071 r8f8226c 12 12 public int parent_id { get; set; } 13 13 public string reply { get; set; } 14 public int? blogpostconsultationid { get; set; } 14 15 [ForeignKey("BlogPostConsultation")] 16 [Column("blogpostconsid")] 17 public int BlogPostConsultationid { get; set; } 18 public BlogPostConsultation BlogPostConsultation { get; set; } 19 15 20 public int usersid { get; set; } 16 21 }
Note:
See TracChangeset
for help on using the changeset viewer.