You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
919 B
34 lines
919 B
|
|
namespace DealerSelection.WebApi.Models;
|
|
|
|
public class MulesoftResponse
|
|
{
|
|
public int StatusCode { get; set; }
|
|
public bool IsRequestSuccessfull { get; set; }
|
|
public List<Data> Data { get; set; }
|
|
|
|
}
|
|
public class MulesoftPriceResponse
|
|
{
|
|
public int StatusCode { get; set; }
|
|
public bool IsRequestSuccessfull { get; set; }
|
|
public string ExPrice { get; set; }
|
|
|
|
}
|
|
|
|
public class Data
|
|
{
|
|
public string DocumentId { get; set; }
|
|
public string Code { get; set; }
|
|
public bool IsBookingActive { get; set; }
|
|
public bool IsTestRideActive { get; set; }
|
|
public string Latitude { get; set; }
|
|
public string Longitude { get; set; }
|
|
public string DisplayName { get; set; }
|
|
public string CompanyName { get; set; }
|
|
public string CompanyCode { get; set; }
|
|
public bool IsActive { get; set; }
|
|
public string BranchName { get; set; }
|
|
public double Distance { get; set; }
|
|
}
|
|
|