Add sample code for chapter 5

This commit is contained in:
Alvin Ashcraft
2023-06-10 09:00:29 -04:00
parent edbc96830c
commit 370d8a52b8
60 changed files with 2202 additions and 0 deletions
@@ -0,0 +1,11 @@
using MyMediaCollection.Enums;
namespace MyMediaCollection.Model
{
public class Medium
{
public int Id { get; set; }
public string Name { get; set; }
public ItemType MediaType { get; set; }
}
}