// --------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
// This source code is made available under the terms of the Microsoft Public License (Ms-PL)
// http://www.codeplex.com/oxite/license
// ---------------------------------
using System.Collections.Generic;
using Oxite.Models;
namespace Oxite.ViewModels{
public class PlayerViewModel
{
public PlayerViewModel(File media, File preview, string advertisementUrl)
{
Media = media;
Preview = preview;
AdvertisementUrl = advertisementUrl;
}
public File Media { get; private set; }
public File Preview { get; private set; }
public string AdvertisementUrl { get; private set; }
}
}
|