using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;

#nullable disable

namespace Ropin.Inspection.Model.Entities
{
    public partial class TISP_RecordImage
    {
        [Key]
        public Guid C_ID { get; set; } = Guid.NewGuid();
        public Guid C_RecordItemCode { get; set; }
        public string C_ImageUrl { get; set; }
        public string C_Status { get; set; }

        public virtual TISP_RecordItem C_RecordItemCodeNavigation { get; set; }
    }
}