mirror of
https://github.com/PacktPublishing/Learn-WinUI-3-Second-Edition.git
synced 2026-06-20 12:23:09 +00:00
11 lines
234 B
C#
11 lines
234 B
C#
using MyMediaCollection.Enums;
|
|
|
|
namespace MyMediaCollection.Model
|
|
{
|
|
public class Medium
|
|
{
|
|
public int Id { get; set; }
|
|
public string Name { get; set; }
|
|
public ItemType MediaType { get; set; }
|
|
}
|
|
} |