Got WPF version work
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
using System.Reactive.Subjects;
|
||||
|
||||
namespace TV_Player
|
||||
namespace TV_Player.MAUI
|
||||
{
|
||||
public class ProgramsData
|
||||
{
|
||||
@@ -14,10 +14,10 @@ namespace TV_Player
|
||||
}
|
||||
}
|
||||
|
||||
private readonly Subject<List<M3UInfo>> programsSubject = new Subject<List<M3UInfo>>();
|
||||
private readonly Subject<List<GroupInfo>> groupsSubject = new Subject<List<GroupInfo>>();
|
||||
private readonly ReplaySubject<List<M3UInfo>> programsSubject = new ReplaySubject<List<M3UInfo>>();
|
||||
private readonly ReplaySubject<List<GroupInfo>> groupsSubject = new ReplaySubject<List<GroupInfo>>();
|
||||
public IObservable<List<M3UInfo>> AllPrograms => programsSubject;
|
||||
public Subject<List<GroupInfo>> GroupsInformation => groupsSubject;
|
||||
public IObservable<List<GroupInfo>> GroupsInformation => groupsSubject;
|
||||
|
||||
private ProgramsData()
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user