You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current enum AIRole has to be renamed into AIRoleType.
The new object must look something like this:
public class AIRole()
{
public AIRoleType RoleType { get; set; }
public string RoleDescription { get; set; }
public List<AIOperativeRuleSet> RulesSets { get; set; } = [];
}
public class AIOperativeRuleSet()
{
public int Order { get; set; }
public string Introduction { get; set; }
public List<AIOperativeRule> Rules { get; set; } = [];
}
public class AIOperativeRule()
{
public int Order { get; set; }
public string RuleContent { get; set; }
}
The text was updated successfully, but these errors were encountered:
The current enum AIRole has to be renamed into AIRoleType.
The new object must look something like this:
public class AIRole()
{
public AIRoleType RoleType { get; set; }
The text was updated successfully, but these errors were encountered: