FruitBank/Presentation/Nop.Web/Models/JsonLD/JsonLdOfferModel.cs

28 lines
603 B
C#

using Newtonsoft.Json;
namespace Nop.Web.Models.JsonLD;
public record JsonLdOfferModel : JsonLdModel
{
#region Properties
[JsonProperty("@type")]
public static string Type => "Offer";
[JsonProperty("url")]
public string Url { get; set; }
[JsonProperty("availability")]
public string Availability { get; set; }
[JsonProperty("price")]
public string Price { get; set; }
[JsonProperty("priceCurrency")]
public string PriceCurrency { get; set; }
[JsonProperty("priceValidUntil")]
public DateTime? PriceValidUntil { get; set; }
#endregion
}