update
This commit is contained in:
20
MySolution/SObject/DogFamily.cs
Normal file
20
MySolution/SObject/DogFamily.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace SObject
|
||||
{
|
||||
public class DogFamily
|
||||
{
|
||||
public string Name { get; set; }
|
||||
public int Age { get; set; }
|
||||
public string Crying { get; set; }
|
||||
|
||||
public string Cry()
|
||||
{
|
||||
return this.Crying;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user