using Abp.Domain.Entities; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace VberZero.Workflow.Persistence { [Table("Sys_Wf_ExtensionAttributes")] public class WorkflowExtensionAttributeInfo : Entity { public string ExecutionPointerId { get; set; } [ForeignKey("ExecutionPointerId")] public WorkflowExecutionPointerInfo ExecutionPointer { get; set; } [MaxLength(100)] public string AttributeKey { get; set; } public string AttributeValue { get; set; } } }