1234567891011121314151617181920212223 |
- using InABox.Core;
- namespace Comal.Classes
- {
-
- public abstract class BaseIntegrationSource<TEntity,TLink> : Entity, IRemotable, IPersistent, IOneToMany<TEntity>
- where TEntity : Entity
- where TLink : IEntityLink<TEntity>
- {
- [NullEditor]
- [EntityRelationship(DeleteAction.Cascade)]
- public TLink Entity { get; set; }
-
- [EditorSequence(1)]
- [EnumLookupEditor(typeof(IntegrationSourceType), Visible = Visible.Default, Width = 100)]
- public IntegrationSourceType Source { get; set; }
-
- [EditorSequence(2)]
- [TextBoxEditor]
- public string? Code { get; set; }
- }
-
- }
|