19 lines
437 B
C#
19 lines
437 B
C#
using SQLite;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace LSFE.MobApp.Entities.Planning
|
|
{
|
|
[Table("Products")]
|
|
public class Product : BaseEntity
|
|
{
|
|
public int ProductId { get; set; }
|
|
public string? ProductName { get; set; }
|
|
public string? ProductLink { get; set; }
|
|
public string? UserId { get; set; }
|
|
}
|
|
}
|