Files
StopShopping/StopShopping.Services/Models/Req/ProductIdParams.cs
2026-03-25 14:55:34 +08:00

7 lines
118 B
C#

namespace StopShopping.Services.Models.Req;
public record ProductIdParams
{
public int ProductId { get; set; }
}