14 lines
439 B
C#
14 lines
439 B
C#
|
|
namespace DoliMiddlewareApi.Dtos.Dolibarr.Setup;
|
||
|
|
|
||
|
|
public class CompanyResponse
|
||
|
|
{
|
||
|
|
public string? name { get; set; }
|
||
|
|
public string? address { get; set; }
|
||
|
|
public string? town { get; set; }
|
||
|
|
public string? zip { get; set; }
|
||
|
|
public string? country { get; set; }
|
||
|
|
public string? phone { get; set; }
|
||
|
|
public string? email { get; set; }
|
||
|
|
public string? idprof1 { get; set; }
|
||
|
|
public string? tva_intra { get; set; }
|
||
|
|
}
|