浏览代码

清除无用文件

章政 7 年之前
父节点
当前提交
5a6a3b1d6a
共有 1 个文件被更改,包括 0 次插入27 次删除
  1. 0 27
      UAS_Web/tool/SubBoundObject.cs

+ 0 - 27
UAS_Web/tool/SubBoundObject.cs

@@ -1,27 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-
-namespace UAS_Web.tool
-{
-    class SubBoundObject
-    {
-        public string SimpleProperty { get; set; }
-
-        public SubBoundObject()
-        {
-            SimpleProperty = "This is a very simple property.";
-        }
-
-        public string GetMyType()
-        {
-            return "My Type is " + GetType();
-        }
-
-        public string EchoSimpleProperty()
-        {
-            return SimpleProperty;
-        }
-    }
-}