mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-02-16 20:13:49 +00:00
begin scaffolding data access layer
This commit is contained in:
19
DataAccessLayer/BreweryPostPhoto.cs
Normal file
19
DataAccessLayer/BreweryPostPhoto.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DataAccessLayer;
|
||||
|
||||
public partial class BreweryPostPhoto
|
||||
{
|
||||
public Guid BreweryPostPhotoID { get; set; }
|
||||
|
||||
public Guid BreweryPostID { get; set; }
|
||||
|
||||
public Guid PhotoID { get; set; }
|
||||
|
||||
public DateTime LinkedAt { get; set; }
|
||||
|
||||
public virtual BreweryPost BreweryPost { get; set; } = null!;
|
||||
|
||||
public virtual Photo Photo { get; set; } = null!;
|
||||
}
|
||||
Reference in New Issue
Block a user