LSFE/LSFE.MobApp/Entities/Account/Inventory.cs
2026-07-30 10:31:04 +08:00

18 lines
389 B
C#

using SQLite;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LSFE.MobApp.Entities.Account
{
[Table("Inventory")]
public class Inventory : BaseEntity
{
public int DoctorId { get; set; }
public string? Description { get; set; }
public string? UserId { get; set; }
}
}