You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
944 B
27 lines
944 B
using System;
|
|
|
|
namespace BBWYB.Client.Models
|
|
{
|
|
public class PurchaseAccount : NotifyObject,ICloneable
|
|
{
|
|
private string accountName;
|
|
private Platform purchasePlatformId;
|
|
private string appKey;
|
|
private string appSecret;
|
|
private string appToken;
|
|
|
|
public long Id { get; set; }
|
|
|
|
public long ShopId { get; set; }
|
|
public string AccountName { get => accountName; set { Set(ref accountName, value); } }
|
|
public Platform PurchasePlatformId { get => purchasePlatformId; set { Set(ref purchasePlatformId, value); } }
|
|
public string AppKey { get => appKey; set { Set(ref appKey, value); } }
|
|
public string AppSecret { get => appSecret; set { Set(ref appSecret, value); } }
|
|
public string AppToken { get => appToken; set { Set(ref appToken, value); } }
|
|
|
|
public object Clone()
|
|
{
|
|
return this.MemberwiseClone();
|
|
}
|
|
}
|
|
}
|
|
|