User.cs 192 B

12345678910
  1. using System;
  2. namespace Samples.Purchasing.GooglePlay.FraudDetection
  3. {
  4. [Serializable]
  5. public class User
  6. {
  7. public string AccountId;
  8. public string ProfileId;
  9. }
  10. }