mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-02-16 10:42:08 +00:00
begin scaffolding data access layer
This commit is contained in:
19
DataAccessLayer/UserFollow.cs
Normal file
19
DataAccessLayer/UserFollow.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DataAccessLayer;
|
||||
|
||||
public partial class UserFollow
|
||||
{
|
||||
public Guid UserFollowID { get; set; }
|
||||
|
||||
public Guid UserAccountID { get; set; }
|
||||
|
||||
public Guid FollowingID { get; set; }
|
||||
|
||||
public DateTime CreatedAt { get; set; }
|
||||
|
||||
public virtual UserAccount Following { get; set; } = null!;
|
||||
|
||||
public virtual UserAccount UserAccount { get; set; } = null!;
|
||||
}
|
||||
Reference in New Issue
Block a user