19 lines
285 B
C#
19 lines
285 B
C#
|
|
using Prism.Commands;
|
|||
|
|
using Prism.Mvvm;
|
|||
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Drawing;
|
|||
|
|
using System.Linq;
|
|||
|
|
|
|||
|
|
namespace PlixP.ViewModels
|
|||
|
|
{
|
|||
|
|
public class MovieItemViewModel : BindableBase
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
public MovieItemViewModel()
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|