10 lines
161 B
C#
10 lines
161 B
C#
|
using System;
|
||
|
namespace Samples.Purchasing.AppleAppStore.FraudDetection
|
||
|
{
|
||
|
[Serializable]
|
||
|
public class User
|
||
|
{
|
||
|
public string Username;
|
||
|
}
|
||
|
}
|