mirror of
https://github.com/ZuneDev/ZuneShell.dll.git
synced 2026-07-27 13:11:51 -07:00
30 lines
361 B
C#
30 lines
361 B
C#
namespace Microsoft.Zune.Service
|
|
{
|
|
public class PaymentInstrument
|
|
{
|
|
private string m_id;
|
|
|
|
private PaymentType m_type;
|
|
|
|
public PaymentType Type => m_type;
|
|
|
|
public string Id
|
|
{
|
|
get
|
|
{
|
|
return m_id;
|
|
}
|
|
set
|
|
{
|
|
m_id = value;
|
|
}
|
|
}
|
|
|
|
public PaymentInstrument(string id, PaymentType type)
|
|
{
|
|
m_id = id;
|
|
m_type = type;
|
|
}
|
|
}
|
|
}
|