using System;
using System.Collections.Generic;

#nullable disable

namespace Ropin.Inspection.Model.Entities
{
    public partial class TPNT_Type
    {
        public TPNT_Type()
        {
            TPNT_Stores = new HashSet<TPNT_Store>();
        }

        public Guid C_Code { get; set; }
        public string C_Name { get; set; }
        public int? I_Sort { get; set; }
        public string C_Status { get; set; }

        public virtual ICollection<TPNT_Store> TPNT_Stores { get; set; }
    }
}