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

7 lines
120 B
C#

namespace StopShopping.Services.Models.Req;
public record CategoryIdParams
{
public int CategoryId { get; set; }
}