mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-02-16 18:52:06 +00:00
begin scaffolding data access layer
This commit is contained in:
15
DataAccessLayer/Comment.cs
Normal file
15
DataAccessLayer/Comment.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DataAccessLayer;
|
||||
|
||||
public partial class Comment
|
||||
{
|
||||
public Guid CommentID { get; set; }
|
||||
|
||||
public string? CommentText { get; set; }
|
||||
|
||||
public Guid PostedByID { get; set; }
|
||||
|
||||
public virtual UserAccount PostedBy { get; set; } = null!;
|
||||
}
|
||||
Reference in New Issue
Block a user