subscription view finished
This commit is contained in:
@@ -12,6 +12,7 @@ namespace VDownload.Models
|
||||
|
||||
public required string Description { get; set; }
|
||||
public required Uri Url { get; set; }
|
||||
public Source Source { get; protected set; }
|
||||
|
||||
#endregion
|
||||
}
|
||||
|
||||
@@ -8,7 +8,6 @@ namespace VDownload.Models
|
||||
{
|
||||
public enum Source
|
||||
{
|
||||
Twitch,
|
||||
Subscriptions
|
||||
Twitch
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,20 +0,0 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace VDownload.Models
|
||||
{
|
||||
public class SubscriptionList : VideoCollection
|
||||
{
|
||||
#region CONSTRUCTORS
|
||||
|
||||
public SubscriptionList()
|
||||
{
|
||||
Source = Source.Subscriptions;
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
12
VDownload.Models/SubscriptionsVideoList.cs
Normal file
12
VDownload.Models/SubscriptionsVideoList.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace VDownload.Models
|
||||
{
|
||||
public class SubscriptionsVideoList : VideoCollection
|
||||
{
|
||||
}
|
||||
}
|
||||
@@ -11,7 +11,6 @@ namespace VDownload.Models
|
||||
#region PROPERTIES
|
||||
|
||||
public required string Name { get; init; }
|
||||
public Source Source { get; protected set; }
|
||||
|
||||
#endregion
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user