// RB2 Core Connect namespace CoreConnect.Commerce.Core; public class Seo{ public Seo(string metaTitle, string metaDescription) { MetaTitle = metaTitle; MetaDescription = metaDescription; } /// <summary> /// The Meta Title of the SEO. /// </summary> public string MetaTitle { get; set; } /// <summary> /// The Meta Description of the SEO. /// </summary> public string MetaDescription { get; set; }}