Files
StockMan/StockMan.Data/DbModels/LocType.cs
T
Samuele Locatelli a4dc1313fc StockMan Data:
- completata review iniziale datamodels
- esclusione viste (almeno x ora)
2023-02-06 20:07:03 +01:00

27 lines
709 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
namespace StockMan.Data.DbModels
{
// <Auto-Generated>
// This is here so CodeMaid doesn't reorganize this document
// </Auto-Generated>
[Table("LocType")]
public partial class LocType
{
public LocType()
{
Locations = new HashSet<Location>();
}
public string Id { get; set; } = null!;
public string Descr { get; set; } = null!;
public bool IsStock { get; set; }
public bool IsCli { get; set; }
public bool IsFor { get; set; }
public virtual ICollection<Location> Locations { get; set; }
}
}