15 lines
391 B
C#
15 lines
391 B
C#
using e_suite.Database.Core.Tables.Contacts;
|
|
using e_suite.Database.Core.Tables.Domain;
|
|
using e_suite.Workflow.Core.Attributes;
|
|
using e_suite.Workflow.Core.Enums;
|
|
|
|
namespace e_suite.Workflow.Core.Interfaces;
|
|
|
|
[TaskCapability]
|
|
public interface ITaskAssignee
|
|
{
|
|
public Role? Role { get; set; }
|
|
public Contact? Contact { get; set; }
|
|
|
|
public Raci Raci { get; set; }
|
|
} |