Implement API endpoints for creating and retrieving product tables. This allows administrators to define product tables and retrieve them by name. The creation endpoint is secured and only accessible to administrators.
7 lines
No EOL
176 B
C#
7 lines
No EOL
176 B
C#
namespace DrinkRateAPI.ApiModels.ProductTable;
|
|
|
|
public class ProductTableGet
|
|
{
|
|
public string ProductTableName { get; set; }
|
|
public string ProductTableId { get; set; }
|
|
} |