mirror of
https://github.com/ZuneDev/ZuneShell.dll.git
synced 2026-07-27 13:11:51 -07:00
47 lines
838 B
C#
47 lines
838 B
C#
using Microsoft.Iris.Markup;
|
|
|
|
namespace Microsoft.Zune.Schemas;
|
|
|
|
public class Media : MarkupDataType
|
|
{
|
|
public Media(MarkupTypeSchema schema) : base(schema)
|
|
{
|
|
}
|
|
|
|
public int LibraryId
|
|
{
|
|
get => GetProperty<int>();
|
|
set => SetProperty(value);
|
|
}
|
|
|
|
public string Title
|
|
{
|
|
get => GetProperty<string>();
|
|
set => SetProperty(value);
|
|
}
|
|
|
|
public int SyncState
|
|
{
|
|
get => GetProperty<int>();
|
|
set => SetProperty(value);
|
|
}
|
|
|
|
public string Type
|
|
{
|
|
get => GetProperty<string>();
|
|
set => SetProperty(value);
|
|
}
|
|
|
|
public long DeviceFileSize
|
|
{
|
|
get => GetProperty<long>();
|
|
set => SetProperty(value);
|
|
}
|
|
|
|
public string Copyright
|
|
{
|
|
get => GetProperty<string>();
|
|
set => SetProperty(value);
|
|
}
|
|
|
|
} |