namespace DoomDeathmatch.Component.MVC.Model; public class ScoreModel { public event Action? ScoreChanged; public int Score { get => _score; set { _score = Math.Max(value, 0); ScoreChanged?.Invoke(this); } } private int _score; }