forked from sanchezvem/PyroFetes
14 lines
342 B
C#
14 lines
342 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace PyroFetes.Models;
|
|
|
|
public class Brand
|
|
{
|
|
//Champs
|
|
[Key] public int Id { get; set; }
|
|
[Required, MaxLength(100)] public string? Name { get; set; }
|
|
[Required] public int ProductId { get; set; }
|
|
|
|
//Relations
|
|
[Required] public Product? Product { get; set; }
|
|
} |