Core.Blueprint.DAL/Core.Blueprint.Domain/Dtos/KeyVaultSecretDto.cs
Sergio Matias Urquin 6358f5f199 Add project files.
2025-04-29 18:39:57 -06:00

15 lines
290 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Core.Blueprint.Domain.Dtos
{
public class KeyVaultSecretDto
{
public string Key { get; set; }
public string Value { get; set; }
}
}