- 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; }
- }
- }
|