using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Text; using System.Threading.Tasks; namespace LSFE.Infrastructure.Entities.Maintenance { [Table("Products")] public class Products { [Key] public int ProductId { get; set; } public string? ProductName { get; set; } public string? ProductLink { get; set; } public string? UserId { get; set; } public bool IsActive { get; set; } } }