Files
Samuele E. Locatelli d0337768f7 Rename DbModels
2023-02-06 23:05:25 +01:00

28 lines
886 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("Operator")]
public partial class OperatorModel
{
public OperatorModel()
{
ItemFluxModOperators = new HashSet<ItemFluxModel>();
ItemFluxOperators = new HashSet<ItemFluxModel>();
}
public string Id { get; set; } = null!;
public string CodExt { get; set; } = null!;
public string LastName { get; set; } = null!;
public string FirstName { get; set; } = null!;
public virtual ICollection<ItemFluxModel> ItemFluxModOperators { get; set; }
public virtual ICollection<ItemFluxModel> ItemFluxOperators { get; set; }
}
}