mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-02-16 10:42:08 +00:00
20 lines
406 B
C#
20 lines
406 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace DataAccessLayer;
|
|
|
|
public partial class BeerPostPhoto
|
|
{
|
|
public Guid BeerPostPhotoID { get; set; }
|
|
|
|
public Guid BeerPostID { get; set; }
|
|
|
|
public Guid PhotoID { get; set; }
|
|
|
|
public DateTime LinkedAt { get; set; }
|
|
|
|
public virtual BeerPost BeerPost { get; set; } = null!;
|
|
|
|
public virtual Photo Photo { get; set; } = null!;
|
|
}
|