Core.Thalos.Service.API/Core.Thalos.Application/UseCases/Users/Input/RemoveProjectFromUserRequest.cs
2025-05-18 19:23:42 -06:00

15 lines
349 B
C#

using Lib.Architecture.BuildingBlocks;
namespace Core.Thalos.Application.UseCases.Users.Input
{
public class RemoveProjectFromUserRequest : Notificator, ICommand
{
public string UserId { get; set; }
public string ProjectId { get; set; }
public bool Validate()
{
return true;
}
}
}