Apigateway/Microservicios/MsUsuarios/Dto/NameObject.cs

13 lines
254 B
C#
Raw Normal View History

2023-02-02 10:50:02 -05:00
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; }
}
}