mirror of
https://github.com/PacktPublishing/Learn-WinUI-3-Second-Edition.git
synced 2026-06-20 12:23:09 +00:00
Add starter project for chapter 4
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user