Add chapter 6 samples

This commit is contained in:
Alvin Ashcraft
2023-07-02 12:49:25 -04:00
parent 370d8a52b8
commit 7d9fe9fb0f
62 changed files with 2566 additions and 0 deletions
@@ -0,0 +1,13 @@
using MyMediaCollection.Enums;
namespace MyMediaCollection.Model
{
public class MediaItem
{
public int Id { get; set; }
public string Name { get; set; }
public ItemType MediaType { get; set; }
public Medium MediumInfo { get; set; }
public LocationType Location { get; set; }
}
}