Files
StockMan/StockMan.Data/DbModels/LocTypeModel.cs
T
Samuele E. Locatelli d0337768f7 Rename DbModels
2023-02-06 23:05:25 +01:00

27 lines
729 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 LocTypeModel
{
public LocTypeModel()
{
Locations = new HashSet<LocationModel>();
}
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<LocationModel> Locations { get; set; }
}
}