58 lines
1.2 KiB
C#
58 lines
1.2 KiB
C#
using System;
|
|
using System.Collections.ObjectModel;
|
|
using Aurora.Models;
|
|
using Aurora.Executors;
|
|
|
|
namespace Aurora.Executors
|
|
{
|
|
public class ClientExecutor : BaseExecutor
|
|
{
|
|
public ClientExecutor()
|
|
{
|
|
|
|
}
|
|
|
|
#region Properties
|
|
public override ObservableCollection<PartyMember> PartyMembers
|
|
{
|
|
get { return null; }
|
|
}
|
|
|
|
#endregion Properties
|
|
|
|
public override void AddToQueue()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public override void Close()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public override ObservableCollection<PartyMember> GetMembers()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public override void GetQueue()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public override void Initialize()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public override void RemoveFromQueue()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public override void Run()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
} |