mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-04-05 18:09:04 +00:00
begin scaffolding data access layer
This commit is contained in:
17
DataAccessLayer/UserAvatar.cs
Normal file
17
DataAccessLayer/UserAvatar.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DataAccessLayer;
|
||||
|
||||
public partial class UserAvatar
|
||||
{
|
||||
public Guid UserAvatarID { get; set; }
|
||||
|
||||
public Guid UserAccountID { get; set; }
|
||||
|
||||
public Guid PhotoID { get; set; }
|
||||
|
||||
public virtual Photo Photo { get; set; } = null!;
|
||||
|
||||
public virtual UserAccount UserAccount { get; set; } = null!;
|
||||
}
|
||||
Reference in New Issue
Block a user