// This file has been auto generated by EF Core Power Tools. #nullable disable using System; using System.Collections.Generic; namespace PRSA.DAL.DB { public partial class sales_forecast { public int id { get; set; } public int sku_code { get; set; } public int supersession { get; set; } public string description { get; set; } public string month { get; set; } public decimal month_sales { get; set; } public decimal value { get; set; } public bool processed { get; set; } public int created_by { get; set; } public DateTime created_at { get; set; } public int update_by { get; set; } public DateTime updated_at { get; set; } } }