mirror of
https://github.com/ZuneDev/ZuneShell.dll.git
synced 2026-07-27 13:11:51 -07:00
26 lines
621 B
C#
26 lines
621 B
C#
using Microsoft.Iris;
|
|
|
|
namespace MicrosoftZuneLibrary;
|
|
|
|
public class AsyncQueryParams
|
|
{
|
|
public Guid ArtistId { get; }
|
|
|
|
public bool GetFriends { get; }
|
|
|
|
public int UserId { get; }
|
|
|
|
public DeferredInvokeHandler SetResultsHandler { get; }
|
|
|
|
public bool ResolveZuneTags { get; }
|
|
|
|
public AsyncQueryParams(Guid artistId, bool getFriends, int userId, DeferredInvokeHandler setResultsHandler, bool resolveZuneTags)
|
|
{
|
|
ArtistId = artistId;
|
|
GetFriends = getFriends;
|
|
UserId = userId;
|
|
SetResultsHandler = setResultsHandler;
|
|
ResolveZuneTags = resolveZuneTags;
|
|
}
|
|
}
|