13 lines
254 B
C#
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; }
|
|||
|
}
|
|||
|
}
|