mirror of
https://github.com/ZuneDev/ZuneShell.dll.git
synced 2026-07-27 13:11:51 -07:00
19 lines
327 B
C#
19 lines
327 B
C#
using Microsoft.Iris.Markup;
|
|
using Microsoft.Iris.UI;
|
|
using System;
|
|
|
|
namespace Microsoft.Zune.Schemas;
|
|
|
|
public class Genre : Media
|
|
{
|
|
public Genre(MarkupTypeSchema schema) : base(schema)
|
|
{
|
|
}
|
|
|
|
public DateTime DateLastPlayed
|
|
{
|
|
get => GetProperty<DateTime>();
|
|
set => SetProperty(value);
|
|
}
|
|
|
|
} |