Projektdateien hinzufügen.

This commit is contained in:
Kevin Krüger
2023-07-24 12:00:34 +02:00
parent 656751e10b
commit 0d00a90942
210 changed files with 45049 additions and 0 deletions

View File

@@ -0,0 +1,41 @@
namespace VideoBrowser.ViewModels
{
using System.Windows.Media;
using VideoBrowser.Common;
using VideoBrowser.Extensions;
using VideoBrowser.Models;
using VideoBrowser.Resources;
/// <summary>
/// Defines the <see cref="VideoViewModel" />
/// </summary>
public class VideoViewModel : NotifyPropertyChanged
{
#region Fields
private double _downloadProgress;
private Video _video;
#endregion Fields
#region Properties
/// <summary>
/// Gets or sets the DownloadProgress
/// </summary>
public double DownloadProgress { get => this._downloadProgress; set => this.Set(this.PropertyChangedHandler, ref this._downloadProgress, value); }
/// <summary>
/// Gets or sets the Icon
/// </summary>
public Geometry Icon { get; set; } = Icons.SearchVideo;
/// <summary>
/// Gets or sets the Video
/// </summary>
public Video Video { get => this._video; set => this.Set(this.PropertyChangedHandler, ref this._video, value); }
#endregion Properties
}
}