You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
424 B
24 lines
424 B
3 months ago
|
namespace Kean.Presentation.Rest
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Restful Api 批量操作资源的方法
|
||
|
/// </summary>
|
||
|
public enum BatchMethod
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 创建资源
|
||
|
/// </summary>
|
||
|
Create,
|
||
|
|
||
|
/// <summary>
|
||
|
/// 更新资源
|
||
|
/// </summary>
|
||
|
Update,
|
||
|
|
||
|
/// <summary>
|
||
|
/// 删除资源
|
||
|
/// </summary>
|
||
|
Delete
|
||
|
}
|
||
|
}
|