Add project files.

This commit is contained in:
Sergio Matias Urquin
2025-04-29 18:37:40 -06:00
parent ef5b7ed2ca
commit dacb004ae9
43 changed files with 1432 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
namespace Core.Blueprint.External.Clients.Blueprint.Requests.SQL
{
public class CreateUserProjectRequest
{
public string ProjectCode { get; set; } = null!;
public string ProjectDescription { get; set; } = null!;
public string UserId { get; set; } = null!;
}
}

View File

@@ -0,0 +1,7 @@
namespace Core.Blueprint.External.Clients.Blueprint.Requests.SQL
{
public class DeleteUserProjectRequest
{
public int Id { get; set; }
}
}

View File

@@ -0,0 +1,6 @@
namespace Core.Blueprint.External.Clients.Blueprint.Requests.SQL
{
public class GetAllUserProjectsRequest
{
}
}

View File

@@ -0,0 +1,7 @@
namespace Core.Blueprint.External.Clients.Blueprint.Requests.SQL
{
public class GetUserProjectRequest
{
public int Id { get; set; }
}
}

View File

@@ -0,0 +1,16 @@
namespace Core.Blueprint.External.Clients.Blueprint.Requests.SQL
{
public class UpdateUserProjectRequest
{
public string ProjectCode { get; set; } = null!;
public string ProjectDescription { get; set; } = null!;
public string UserId { get; set; } = null!;
public int Id { get; set; }
public string Guid { get; set; } = null!;
public DateTime CreatedAt { get; set; }
public string? CreatedBy { get; set; }
public DateTime? UpdatedAt { get; set; }
public string? UpdatedBy { get; set; }
public StatusEnum Status { get; set; }
}
}