Fix listview color and add ch3 starter project

This commit is contained in:
Alvin Ashcraft
2023-05-06 14:41:28 -04:00
parent 059a82b6a5
commit e29c389e86
21 changed files with 478 additions and 1 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; }
}
}