Backend/e-suite.Workflow.Core/Interfaces/ITaskAssignee.cs
2026-01-20 21:50:10 +00:00

12 lines
274 B
C#

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; }
}