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,40 @@
namespace VideoBrowser.Models
{
using VideoBrowser.Common;
using VideoBrowser.Extensions;
/// <summary>
/// Defines the <see cref="Video" />
/// </summary>
public class Video : NotifyPropertyChanged
{
#region Fields
private string _id;
private string _title;
private VideoState _videoState;
#endregion Fields
#region Properties
/// <summary>
/// Gets or sets the Id
/// </summary>
public string Id { get => this._id; set => this.Set(this.PropertyChangedHandler, ref this._id, value); }
/// <summary>
/// Gets or sets the Title
/// </summary>
public string Title { get => this._title; set => this.Set(this.PropertyChangedHandler, ref this._title, value); }
/// <summary>
/// Gets or sets the VideoState
/// </summary>
public VideoState VideoState { get => this._videoState; set => this.Set(this.PropertyChangedHandler, ref this._videoState, value); }
#endregion Properties
}
}