about summary refs log tree commit diff
path: root/pet_info/Pet Info/Pet.cs
diff options
context:
space:
mode:
Diffstat (limited to 'pet_info/Pet Info/Pet.cs')
-rw-r--r--pet_info/Pet Info/Pet.cs15
1 files changed, 15 insertions, 0 deletions
diff --git a/pet_info/Pet Info/Pet.cs b/pet_info/Pet Info/Pet.cs
new file mode 100644
index 0000000..5f78fd2
--- /dev/null
+++ b/pet_info/Pet Info/Pet.cs
@@ -0,0 +1,15 @@
+using System;

+using System.Collections.Generic;

+using System.Linq;

+using System.Text;

+using System.Threading.Tasks;

+

+namespace Pet_Info

+{

+    internal class Pet

+    {

+        public string Name { get; set; }

+        public string Type { get; set; }

+        public string Age { get; set; }

+    }

+}