//------------------------------------------------------------------------------ // This is auto-generated code. //------------------------------------------------------------------------------ // This code was generated by Entity Developer tool using EF Core template. // Code is generated on: 11.04.2022 13:40:57 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. //------------------------------------------------------------------------------ using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Data.Common; using System.Linq; using System.Linq.Expressions; namespace FoodsharingSiegen.Contracts.Entity { public partial class User { public User() { this.Interactions = new List(); OnCreated(); } public virtual Guid Id { get; set; } public virtual string Mail { get; set; } public virtual UserType Type { get; set; } public virtual bool Verified { get; set; } public virtual string Name { get; set; } public virtual DateTime Created { get; set; } public virtual string EncryptedPassword { get; set; } public virtual string Groups { get; set; } public virtual bool ForceLogout { get; set; } public virtual IList Interactions { get; set; } #region Extensibility Method Definitions partial void OnCreated(); #endregion } }