BrokenShoeLeague.Domain.Player.Update C# (CSharp) Method

Update() public method

public Update ( string name, string imageProfileUrl, bool enabled ) : void
name string
imageProfileUrl string
enabled bool
return void
        public void Update(string name, string imageProfileUrl, bool enabled)
        {
            Name = name;
            ImageProfileUrl = imageProfileUrl;
            Enabled = enabled;
        }