15 lines
344 B
C#
15 lines
344 B
C#
using Lib.Architecture.BuildingBlocks;
|
|
|
|
namespace Core.Thalos.Application.UseCases.Users.Input
|
|
{
|
|
public class AddProjectToUserRequest : Notificator, ICommand
|
|
{
|
|
public string UserId { get; set; }
|
|
public string ProjectId { get; set; }
|
|
public bool Validate()
|
|
{
|
|
return true;
|
|
}
|
|
}
|
|
}
|