13 lines
218 B
C#
13 lines
218 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace CC.Yi.ViewModel
|
|
{
|
|
public class setByIds
|
|
{
|
|
public int id { get; set; }
|
|
public List<int> ids { get; set; }
|
|
}
|
|
}
|