Files
dotNetStudyWithGPT/MySolution/SObject/Coyote.cs
2023-10-13 14:15:26 +09:00

19 lines
345 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SObject
{
public class Coyote : DogFamily
{
public Coyote(string name, int age)
{
this.Name = name;
this.Age = age;
this.Crying = "Yip";
}
}
}