Fix Add tenant id property to user

This commit is contained in:
2025-08-31 18:01:35 -06:00
parent 95e64b8431
commit 8b0a0c6bc8
3 changed files with 5 additions and 4 deletions

View File

@@ -7,6 +7,7 @@
public string? MiddleName { get; set; }
public string LastName { get; set; } = null!;
public string RoleId { get; set; } = null!;
public string TenantId { get; set; } = null!;
public bool SendInvitation { get; set; }
}
}

View File

@@ -10,8 +10,8 @@ namespace Core.Thalos.Application.UseCases.Users.Input
public string? MiddleName { get; set; }
public string LastName { get; set; } = null!;
public string RoleId { get; set; } = null!;
public string[] Companies { get; set; } = null!;
public string[]? Projects { get; set; }
public string TenantId { get; set; } = null!;
public StatusEnum Status { get; set; }
}
}