Apigateway/Microservicios/MsUsuarios/Dto/NameObject.cs
2023-02-02 10:50:06 -05:00

13 lines
254 B
C#

using System;
using System.Collections.Generic;
namespace MSAdminUsuarios.Dto
{
public class NameObject
{
public string? nombre { get; set; }
public string? iniciales { get; set; }
public int? pk { get; set; }
}
}