8 lines
188 B
C#
8 lines
188 B
C#
|
|
namespace DoliMiddlewareApi.Dtos.query.Setup;
|
||
|
|
|
||
|
|
public class CivilityDto
|
||
|
|
{
|
||
|
|
public string? Id { get; set; }
|
||
|
|
public string? Code { get; set; }
|
||
|
|
public string? Label { get; set; }
|
||
|
|
}
|