mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-02-16 10:42:08 +00:00
16 lines
305 B
C#
16 lines
305 B
C#
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!;
|
|
}
|