18 lines
		
	
	
		
			359 B
		
	
	
	
		
			C#
		
	
	
	
		
		
			
		
	
	
			18 lines
		
	
	
		
			359 B
		
	
	
	
		
			C#
		
	
	
	
|  | using System; | |||
|  | using UnityEngine; | |||
|  | 
 | |||
|  | namespace MMO | |||
|  | { | |||
|  |     [Serializable] | |||
|  |     public class MMORequestDeleteUser : MMORequestBase | |||
|  |     { | |||
|  |         protected override string APIName => "RemoveUser"; | |||
|  | 
 | |||
|  |         [SerializeField] private string touka_id; | |||
|  | 
 | |||
|  |         public MMORequestDeleteUser(string pPlayerID) | |||
|  |         { | |||
|  |             touka_id = pPlayerID; | |||
|  |         } | |||
|  |     } | |||
|  | } |