Files
PyroFetes/PyroFetes/Models/ProductCategory.cs
2025-10-03 14:44:12 +01:00

11 lines
265 B
C#

using System.ComponentModel.DataAnnotations;
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; }
}