blob: 5f78fd2397b2a3e0707285222568ca027dd80ff9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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; }
}
}
|