diff --git a/Yavsc/Models/Workflow/CommandForm.cs b/Yavsc/Models/Workflow/CommandForm.cs new file mode 100644 index 00000000..ddbaf4f5 --- /dev/null +++ b/Yavsc/Models/Workflow/CommandForm.cs @@ -0,0 +1,16 @@ +using System.ComponentModel.DataAnnotations; +using System.ComponentModel.DataAnnotations.Schema; + +namespace Yavsc.Models.Workflow +{ + public class CommandForm : Forms.Form + { + public string Title { get; set; } + + [Required] + public string ActivityCode { get; set; } + + [ForeignKey("ActivityCode")] + public virtual Activity Context { get; set; } + } +} \ No newline at end of file