source: PostgreSqlDotnetCore/Models/BlogPostAnswers.cs@ ae6c071

main
Last change on this file since ae6c071 was 2aea0fd, checked in by ElenaMoskova <elena.moskova99@…>, 2 months ago

init commit Elena

  • Property mode set to 100644
File size: 479 bytes
Line 
1using System.ComponentModel.DataAnnotations;
2using System.ComponentModel.DataAnnotations.Schema;
3
4namespace PostgreSqlDotnetCore.Models
5{
6
7 [Table("blog_post_answers", Schema = "project")]
8 public class BlogPostAnswers
9 {
10 [Key]
11 public int id { get; set; }
12 public int parent_id { get; set; }
13 public string reply { get; set; }
14 public int? blogpostconsultationid { get; set; }
15 public int usersid { get; set; }
16 }
17}
Note: See TracBrowser for help on using the repository browser.