19 lines
342 B
C#
19 lines
342 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SObject
|
|
{
|
|
public class Wolf : DogFamily
|
|
{
|
|
public Wolf(string name, int age)
|
|
{
|
|
this.Name = name;
|
|
this.Age = age;
|
|
this.Crying = "Howl";
|
|
}
|
|
}
|
|
}
|