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