提交.Net6版本
This commit is contained in:
23
Yi.Framework.Net5/Yi.Framework.DTOModel/IdsDto.cs
Normal file
23
Yi.Framework.Net5/Yi.Framework.DTOModel/IdsDto.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Yi.Framework.DTOModel
|
||||
{
|
||||
public class IdDto<T>
|
||||
{
|
||||
public T id1 { get; set; }
|
||||
public T id2 { get; set; }
|
||||
}
|
||||
|
||||
public class IdsDto<T>
|
||||
{
|
||||
public T id{ get; set; }
|
||||
public List<T> ids { get; set; }
|
||||
}
|
||||
|
||||
public class IdsListDto<T>
|
||||
{
|
||||
public List<T> ids1 { get; set; }
|
||||
public List<T> ids2 { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user