// RB2 Core Connect namespace CoreConnect.Payments; public record Address{ public string? FirstName { get; set; } public string? LastName { get; set; } public string? Company { get; set; } public string? Address1 { get; set; } public string? Address2 { get; set; } public string? City { get; set; } public string? CountryCode { get; set; } public string? PostalCode { get; set; } public string? StateOrProvince { get; set; } public string? Phone { get; set; } public string? StreetNumber { get; set; } public string? AdditionalStreetInfo { get; set; }} public record ShippingAddress : Address{ public string? Email { get; set; }} public record BillingAddress : Address{ public string? Email { get; set; }}