Initial import from local backup (Documents-Playground/pakerpale)
This commit is contained in:
17
Entities/Post.cs
Normal file
17
Entities/Post.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
using System;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
|
||||
namespace Auth.api.Entities
|
||||
{
|
||||
[Table("cm_post")]
|
||||
public class Post
|
||||
{
|
||||
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
||||
public int postID { get; set; }
|
||||
public string postTitle { get; set; }
|
||||
public string postImage { get; set; }
|
||||
public string datePosted { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user