Files
pyrofetes-backend/PyroFetes/Models/ProductCategory.cs
T
2026-05-24 17:24:44 +01:00

11 lines
264 B
C#

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