mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-03 00:00:58 +08:00
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; }
|
|
}
|
|
}
|