Add starter code for chapter 8

No modifications for Complete folder yet.
This commit is contained in:
Alvin Ashcraft
2023-07-23 12:06:52 -04:00
parent 82078fd081
commit 21e22a0369
64 changed files with 3010 additions and 0 deletions
@@ -0,0 +1,13 @@
using Dapper.Contrib.Extensions;
using MyMediaCollection.Enums;
namespace MyMediaCollection.Model
{
public class Medium
{
[Key]
public int Id { get; set; }
public string Name { get; set; }
public ItemType MediaType { get; set; }
}
}