8 lines
196 B
C#
8 lines
196 B
C#
|
|
namespace DoliMiddlewareApi.Dtos.Dolibarr.Setup;
|
||
|
|
|
||
|
|
public class CivilityResponse
|
||
|
|
{
|
||
|
|
public string? id { get; set; }
|
||
|
|
public string? code { get; set; }
|
||
|
|
public string? label { get; set; }
|
||
|
|
}
|