using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; namespace StockMan.Data.DbModels { // // This is here so CodeMaid doesn't reorganize this document // [Table("MovType")] public partial class MovTypeModel { public MovTypeModel() { ItemFluxes = new HashSet(); } public string Id { get; set; } = null!; public string Descr { get; set; } = null!; public string? CssClass { get; set; } public virtual ICollection ItemFluxes { get; set; } } }