11 lines
267 B
C#
11 lines
267 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace PF3.Models;
|
|
|
|
public class Effect
|
|
{
|
|
[Key] public int Id { get; set; }
|
|
[Required, MaxLength(200)] public string? Label { get; set; }
|
|
|
|
public List<ProductEffect>? ProductEffects { get; set; }
|
|
} |