Skip to content

Commit 07c982f

Browse files
committed
Update SegmentCloth.
1 parent bfe884e commit 07c982f

File tree

3 files changed

+19
-1
lines changed

3 files changed

+19
-1
lines changed

CHANGELOG

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2024-07-19 Version: 0.0.12
2+
- Update SegmentCloth.
3+
14
2024-07-18 Version: 1.0.0
25
初始发布
36

aliyun-net-sdk-imageseg/Imageseg/Model/V20191230/SegmentClothRequest.cs

+15
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,8 @@ public SegmentClothRequest()
4444

4545
private string returnForm;
4646

47+
private long? outMode;
48+
4749
private string imageURL;
4850

4951
public List<string> ClothClasss
@@ -72,6 +74,19 @@ public string ReturnForm
7274
}
7375
}
7476

77+
public long? OutMode
78+
{
79+
get
80+
{
81+
return outMode;
82+
}
83+
set
84+
{
85+
outMode = value;
86+
DictionaryUtil.Add(QueryParameters, "OutMode", value.ToString());
87+
}
88+
}
89+
7590
public string ImageURL
7691
{
7792
get

aliyun-net-sdk-imageseg/aliyun-net-sdk-imageseg.vs2017.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<TargetFrameworks>netstandard2.0;net45</TargetFrameworks>
55
<RootNamespace>Aliyun.Acs.imageseg</RootNamespace>
6-
<Version>0.0.11</Version>
6+
<Version>0.0.12</Version>
77
<Authors>Alibaba Cloud</Authors>
88
<Copyright>©2009-2019 Alibaba Cloud</Copyright>
99
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>

0 commit comments

Comments
 (0)