BattleInfoPlugin.Models.MastersShipData.UpdateFromSource C# (CSharp) Method

UpdateFromSource() private method

private UpdateFromSource ( ) : void
return void
        private void UpdateFromSource()
        {
            this.Id = this.Source.Id;
            this.Name = this.Source.Name;
            var isEnemyID = 500 < this.Source.Id && this.Source.Id < 901;
            this.AdditionalName = isEnemyID ? this.Source.RawData.api_yomi : "";
            this.TypeName = this.Source.ShipType.Name;
        }