BrokenShoeLeague.Domain.Player.Update C# (CSharp) Метод

Update() публичный Метод

public Update ( string name, string imageProfileUrl, bool enabled ) : void
name string
imageProfileUrl string
enabled bool
Результат void
        public void Update(string name, string imageProfileUrl, bool enabled)
        {
            Name = name;
            ImageProfileUrl = imageProfileUrl;
            Enabled = enabled;
        }