begin scaffolding data access layer

This commit is contained in:
Aaron Po
2025-10-28 18:28:30 -04:00
parent 2f0bfd90b2
commit 738c055bf7
18 changed files with 1071 additions and 3 deletions

View 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!;
}