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

15 lines
344 B
C#

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