2025-07-08 14:01:10 +08:00

14 lines
345 B
C#

using System;
using System.Collections.Generic;
namespace CodeFirstExistingDatabaseSample.ISMS_BASE.Models
{
public partial class TbImage
{
public string ObjId { get; set; } = null!;
public int Length { get; set; }
public string Format { get; set; } = null!;
public byte[]? Data { get; set; }
}
}