Files
PF3-fork/PyroFetes/Models/ProductCategory.cs

12 lines
283 B
C#

using System.ComponentModel.DataAnnotations;
using API.Models;
namespace PyroFetes.Models;
public class ProductCategory
{
[Key] public int Id { get; set; }
[Required] public string? Label { get; set; }
[Required] public List<Product>? Products { get; set; }
}