14 lines
345 B
C#
Raw Permalink Normal View History

2024-08-21 16:50:14 +08:00
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; }
}
}