14 lines
		
	
	
		
			250 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			250 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using System;
 | 
						|
using System.Collections.Generic;
 | 
						|
 | 
						|
namespace APT.BaseData.Domain.ApiModel.Platform
 | 
						|
{
 | 
						|
    public class ReceiveModel
 | 
						|
    {
 | 
						|
        /// <summary>
 | 
						|
        /// id
 | 
						|
        /// </summary>
 | 
						|
        public List<Guid> Ids { get; set; }
 | 
						|
    }
 | 
						|
}
 |