Add starter project for chapter 4

This commit is contained in:
Alvin Ashcraft
2023-05-29 11:43:34 -04:00
parent 5ec4e6e6b4
commit e512a9926c
25 changed files with 861 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; }
}
}
@@ -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; }
}
}