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.
44 lines
832 B
44 lines
832 B
2 years ago
|
using System;
|
||
|
|
||
|
namespace com.alibaba.openapi.client
|
||
|
{
|
||
|
public class APIId
|
||
|
{
|
||
|
public APIId()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
public APIId(String namespaceValue,String name, int version)
|
||
|
{
|
||
|
this.NamespaceValue = namespaceValue;
|
||
|
this.Name = name;
|
||
|
this.version = version;
|
||
|
}
|
||
|
|
||
|
private String namespaceValue;
|
||
|
|
||
|
public String NamespaceValue
|
||
|
{
|
||
|
get { return namespaceValue; }
|
||
|
set { namespaceValue = value; }
|
||
|
}
|
||
|
private String name;
|
||
|
|
||
|
public String Name
|
||
|
{
|
||
|
get { return name; }
|
||
|
set { name = value; }
|
||
|
}
|
||
|
private int version;
|
||
|
|
||
|
public int Version
|
||
|
{
|
||
|
get { return version; }
|
||
|
set { version = value; }
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|
||
|
}
|