You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

13 lines
319 B

namespace Znyc.Cloudcar.Admin.Commons.Entitys
{
/// <summary>
/// 定义逻辑删除功能审计信息
/// </summary>
public interface IDeleteAudited
{
/// <summary>
/// 获取或设置 逻辑删除标记
/// </summary>
bool IsDeleted { get; set; }
}
}