using Lib.Architecture.BuildingBlocks; namespace Core.Blueprint.Application.UsesCases.SQL.Input { public class DeleteUserProjectRequest : Notificator, ICommand { public int Id { get; set; } public bool Validate() { return true; } } }