/*
<copyright file="BGNCDeleteRow.cs" company="BansheeGz">
    Copyright (c) 2018-2021 All Rights Reserved
</copyright>
*/


using ParadoxNotion.Design;

namespace BansheeGz.BGDatabase
{
    [Category("BansheeGz")]
    [Name("BGDatabase: Delete a row")]
    [Description("Delete specified row")]
    public class BGNCDeleteRow : BGNCRowA
    {
        protected override void OnExecute()
        {
            Entity.Delete();
            EndAction(true);
        }
    }
}