// RB2 Core Connect using HotChocolate; namespace CoreConnect.Commerce.Customer;public class RemoveCustomerAddressRequest{ public RemoveCustomerAddressRequest(string addressId) { AddressId = addressId; } [GraphQLIgnore] public string? CustomerId { get; set; } public string AddressId { get; set; }}