Initial import from local backup (Documents-Playground/pakerpale)

This commit is contained in:
jeonghwa
2026-07-03 05:27:03 +09:00
commit 7543d94a37
38 changed files with 21641 additions and 0 deletions

17
Entities/Post.cs Normal file
View 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; }
}
}