Image.cs 289 B

123456789101112131415
  1. using System;
  2. using System.Collections.Generic;
  3. namespace reactivepril.Models;
  4. public partial class Image
  5. {
  6. public int Id { get; set; }
  7. public byte[] Image1 { get; set; } = null!;
  8. public int? Users { get; set; }
  9. public virtual User? UsersNavigation { get; set; }
  10. }