14 lines
345 B
C#
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; }
|
|||
|
}
|
|||
|
}
|