using e_suite.Database.Core.Tables.Contacts; using e_suite.Database.Core.Tables.Domain; namespace e_suite.Workflow.Core; public interface ITaskAssignee { public Role? Role { get; set; } public Contact? Contact { get; set; } public Raci Raci { get; set; } }