remove pettest, which is for testing only

This commit is contained in:
wing328
2015-04-21 23:16:54 +08:00
parent eed04560c0
commit 95ff0b9313

View File

@@ -1,41 +0,0 @@
using System;
using System.Text;
using System.Collections;
using System.Collections.Generic;
namespace io.swagger.Model {
public class PetTest {
public long? Id { get; set; }
public Category Category { get; set; }
public string Name { get; set; }
public override string ToString() {
var sb = new StringBuilder();
sb.Append("class PetTest {\n");
sb.Append(" Id: ").Append(Id).Append("\n");
sb.Append(" Category: ").Append(Category).Append("\n");
sb.Append(" Name: ").Append(Name).Append("\n");
sb.Append("}\n");
return sb.ToString();
}
}
}