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