mirror of
https://github.com/ysoftdevs/Theatrical-Players-Refactoring-Kata.git
synced 2026-01-16 16:36:37 +01:00
19 lines
453 B
C#
19 lines
453 B
C#
namespace TheatricalPlayersRefactoringKata
|
|
{
|
|
public class Performance
|
|
{
|
|
private string _playID;
|
|
private int _audience;
|
|
|
|
public string PlayID { get => _playID; set => _playID = value; }
|
|
public int Audience { get => _audience; set => _audience = value; }
|
|
|
|
public Performance(string playID, int audience)
|
|
{
|
|
this._playID = playID;
|
|
this._audience = audience;
|
|
}
|
|
|
|
}
|
|
}
|