using System;
using System.Collections.Generic;

#nullable disable

namespace Ropin.Inspection.Model.Entities
{
    public partial class TDEV_Device
    {
        public TDEV_Device()
        {
            //TPRD_Products = new HashSet<TPRD_Product>();
        }

        public string C_Code { get; set; }
        public string C_Name { get; set; }
        public Guid C_ProductCode { get; set; }
        public string C_MachineCode { get; set; }

        public string C_Marker { get; set; }
        public string D_ProdDate { get; set; }
        public string C_ProdArea { get; set; }
        public string C_PerformanceParameter { get; set; }
        public string C_Category { get; set; }
        public string C_Manufacturer { get; set; }
        public string C_ImagePath { get; set; }
        public string C_IconPath { get; set; }
        public string C_Parameter { get; set; }
        public string C_Contacts { get; set; }
        public string C_ContactPhone { get; set; }
        public string C_OfficialWebsiteUrl { get; set; }
        public string I_ValiDays { get; set; }




        public string C_Remark { get; set; }
        public Guid C_CreateBy { get; set; }
        public DateTime D_CreateOn { get; set; }
        public Guid? C_LastUpdatedBy { get; set; }
        public DateTime? D_LastUpdatedOn { get; set; }
        public string C_Status { get; set; }

        public virtual TSYS_User C_CreateByNavigation { get; set; }
        public virtual TSYS_User C_LastUpdatedByNavigation { get; set; }
        //public virtual TPRD_Product C_ProductCodeNavigation { get; set; }
        //public virtual ICollection<TPRD_Product> TPRD_Products { get; set; }
    }
}