8 lines
140 B
C#
8 lines
140 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace PyroFetes.Models;
|
|
|
|
public class Product
|
|
{
|
|
[Key] public int Id { get; set; }
|
|
} |