Skip to content

UpdateCustomerProfileRequest

// RB2 Core Connect
namespace CoreConnect.Commerce.Customer;
public class UpdateCustomerProfileRequest
{
public string? FirstName { get; set; }
public string? Salutation { get; set; }
public string? LastName { get; set; }
public string? BirthDate { get; set; }
public string? Email { get; set; }
public string? Telephone { get; set; }
}