using Volo.Abp.Data; namespace Volo.Abp.BlazoriseUI.Components.ObjectExtending; public partial class CheckExtensionProperty where TEntity : IHasExtraProperties { protected bool Value { get { return PropertyInfo.GetInputValueOrDefault(Entity.GetProperty(PropertyInfo.Name)); } set { Entity.SetProperty(PropertyInfo.Name, value, false); } } }