11 lines
192 B
C#
11 lines
192 B
C#
using System;
|
|
namespace Samples.Purchasing.GooglePlay.FraudDetection
|
|
{
|
|
[Serializable]
|
|
public class User
|
|
{
|
|
public string AccountId;
|
|
public string ProfileId;
|
|
}
|
|
}
|