// RB2 Core Connect namespace CoreConnect.Commerce.Customer;public class Wishlist{ public Wishlist(string name, string? id = null, int? version = null, IEnumerable<WishlistItem>? lineItems = null, string? anonymousId = null) { Id = id; Version = version; Name = name; LineItems = lineItems; AnonymousId = anonymousId; } public string? Id { get; set; } public int? Version { get; set; } public string Name { get; set; } public IEnumerable<WishlistItem>? LineItems { get; set; } public string? AnonymousId { get; set; } public DateTime CreatedAt { get; set; } public DateTime? LastModifiedAt { get; set; }}