17 lines
413 B
C#
17 lines
413 B
C#
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; }
|
|
|
|
}
|
|
} |