mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-02-16 10:42:08 +00:00
begin scaffolding data access layer
This commit is contained in:
15
DataAccessLayer/BeerStyle.cs
Normal file
15
DataAccessLayer/BeerStyle.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DataAccessLayer;
|
||||
|
||||
public partial class BeerStyle
|
||||
{
|
||||
public Guid BeerStyleID { get; set; }
|
||||
|
||||
public string StyleName { get; set; } = null!;
|
||||
|
||||
public string? Description { get; set; }
|
||||
|
||||
public virtual ICollection<BeerPost> BeerPosts { get; set; } = new List<BeerPost>();
|
||||
}
|
||||
Reference in New Issue
Block a user