cn.songxinqiang.starter.swagger.ApiContact Maven / Gradle / Ivy
/**
*
* Copyright (c) 2014, 2018, 阿信sxq(https://my.oschina.net/songxinqiang).
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
/*
* 创建时间:2018-12-24_11:36:04(+0800)
* 作者:阿信sxq(https://my.oschina.net/songxinqiang)
*
* 众里寻她千百度, 蓦然回首, 那人却在灯火阑珊处.
*
*/
package cn.songxinqiang.starter.swagger;
/**
* 联系人信息
*
* @author 阿信sxq
*
*/
public class ApiContact {
private String name = "";
private String email = "";
private String url = "";
public String getName() {
return name;
}
public String getEmail() {
return email;
}
public String getUrl() {
return url;
}
public void setName(String name) {
this.name = name;
}
public void setEmail(String email) {
this.email = email;
}
public void setUrl(String url) {
this.url = url;
}
}