11 lines
223 B
C#
11 lines
223 B
C#
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace FJPSite.Interfaces;
|
|
|
|
public interface ISoftDeleteEntity
|
|
{
|
|
[Required, DefaultValue(true)]
|
|
public bool IsActive { get; set; }
|
|
}
|