BattleInfoPlugin.Models.MastersShipData.UpdateFromSource C# (CSharp) Méthode

UpdateFromSource() private méthode

private UpdateFromSource ( ) : void
Résultat 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;
        }