AuthenticationRequestData.cs 279 B

12345678910111213
  1. using System;
  2. using System.Collections;
  3. using System.Collections.Generic;
  4. using UnityEngine;
  5. [Serializable]
  6. public class AuthenticationRequestData
  7. {
  8. public string channelId;
  9. public string appPackageName;
  10. public string deviceId;
  11. public string channelUserId;
  12. }