mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-06-08 02:48:19 +08:00
e5063e1a4d
v3.0.1
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; }
|
|
}
|
|
}
|