Files
FoodsharingOnboarding/FoodsharingSiegen.Contracts/Entity/Prospect.Generated.cs
2022-04-04 16:39:40 +02:00

51 lines
1.3 KiB
C#

//------------------------------------------------------------------------------
// This is auto-generated code.
//------------------------------------------------------------------------------
// This code was generated by Entity Developer tool using EF Core template.
// Code is generated on: 04.04.2022 16:38:40
//
// 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 Prospect {
public Prospect()
{
this.Interactions = new List<Interaction>();
OnCreated();
}
public virtual Guid Id { get; set; }
public virtual int FsId { get; set; }
public virtual string Name { get; set; }
public virtual Guid ProgressId { get; set; }
public virtual DateTime Created { get; set; }
public virtual string Memo { get; set; }
public virtual IList<Interaction> Interactions { get; set; }
#region Extensibility Method Definitions
partial void OnCreated();
#endregion
}
}