// This file has been auto generated by EF Core Power Tools.
#nullable disable
using System;
using System.Collections.Generic;
namespace rgbc_sds.dal.DB;
public partial class sdsSupplier
{
public int id { get; set; }
public string name { get; set; }
public bool? is_active { get; set; }
public string created_by { get; set; }
public DateTime? created_at { get; set; }
public string updated_by { get; set; }
public DateTime? updated_at { get; set; }
public virtual ICollection sdsShipment { get; set; } = new List();
}