namespace Coldairarrow.Util
{
    /// <summary>
    ///Delete the pattern
    /// </summary>
    public enum DeleteMode
    {
        /// <summary>
        ///Physical delete, that is, delete directly from the database
        /// </summary>
        Physic,

        /// <summary>
        ///Logical deletion, that is, only set the Deleted field to true
        /// </summary>
        Logic
    }
}
Copy the code