diff options
author | | 1970-01-01 00:00:00 +0000 |
---|---|---|
committer | | 1970-01-01 00:00:00 +0000 |
commit | 90695e9b1f6895b47b7b11371e0907b17b5497a1 (patch) | |
tree | 6fdbfe7737dc07bf784b066056532ba5e62020e6 /pet_info/Pet Info/Pet.cs | |
parent | joke & punch line (diff) | |
download | wf-90695e9b1f6895b47b7b11371e0907b17b5497a1.tar wf-90695e9b1f6895b47b7b11371e0907b17b5497a1.tar.gz wf-90695e9b1f6895b47b7b11371e0907b17b5497a1.tar.bz2 wf-90695e9b1f6895b47b7b11371e0907b17b5497a1.tar.xz wf-90695e9b1f6895b47b7b11371e0907b17b5497a1.zip |
pet info
Diffstat (limited to 'pet_info/Pet Info/Pet.cs')
-rw-r--r-- | pet_info/Pet Info/Pet.cs | 15 |
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; } + } +} |