Add tenant services and delete services
This commit is contained in:
@@ -4,7 +4,7 @@ namespace Core.Thalos.External.Clients.Thalos.Requests.Permissions
|
||||
{
|
||||
public class ChangeModuleStatusRequest
|
||||
{
|
||||
public string Id { get; set; }
|
||||
public string _Id { get; set; }
|
||||
public StatusEnum Status { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
namespace Core.Thalos.External.Clients.Thalos.Requests.Permissions
|
||||
{
|
||||
public class DeleteModuleRequest
|
||||
{
|
||||
public string _Id { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -2,6 +2,6 @@
|
||||
{
|
||||
public class GetModuleRequest
|
||||
{
|
||||
public string Id { get; set; }
|
||||
public string _Id { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
@@ -5,7 +5,7 @@ namespace Core.Thalos.External.Clients.Thalos.Requests.Permissions
|
||||
{
|
||||
public class UpdateModuleRequest
|
||||
{
|
||||
public string Id { get; set; } = null!;
|
||||
public string _Id { get; set; } = null!;
|
||||
public string Name { get; set; } = null!;
|
||||
public string? Description { get; set; }
|
||||
public string? Icon { get; set; }
|
||||
|
||||
Reference in New Issue
Block a user