mirror of
https://github.com/ysoftdevs/Theatrical-Players-Refactoring-Kata.git
synced 2026-01-19 09:47:00 +01:00
17 lines
397 B
C#
17 lines
397 B
C#
namespace TheatricalPlayersRefactoringKata
|
|
{
|
|
public class Play
|
|
{
|
|
private string _name;
|
|
private string _type;
|
|
|
|
public string Name { get => _name; set => _name = value; }
|
|
public string Type { get => _type; set => _type = value; }
|
|
|
|
public Play(string name, string type) {
|
|
this._name = name;
|
|
this._type = type;
|
|
}
|
|
}
|
|
}
|