using System.ComponentModel; namespace CK.SCP.Models.Base { public interface ISoftDelete { [Description("软删除")] bool IsDeleted { get; set; } } }