Core.Blueprint.BFF/Core.Blueprint.External/Clients/Blueprint/Adapters/BlueprintAdapter.cs
Sergio Matias Urquin dacb004ae9 Add project files.
2025-04-29 18:37:40 -06:00

18 lines
608 B
C#

using Core.Blueprint.External.Clients.Blueprint.Requests;
namespace Core.Blueprint.External.Clients.Blueprint.Adapters
{
public class BlueprintAdapter
{
public string Name { get; set; } = null!;
public string? Description { get; set; }
public string _Id { get; set; } = null!;
public string Id { get; init; } = 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; }
}
}