using System; using System.Collections.Generic; using System.ComponentModel; using System.ComponentModel.DataAnnotations; using System.Data; using System.Data.Common; using System.Linq; using System.Linq.Expressions; namespace FoodsharingSiegen.Contracts.Entity { /// /// The interaction class (a. beging, 21.05.2022) /// public class Interaction { #region Public Properties /// /// Gets or sets the value of the alert (ab) /// public bool Alert { get; set; } /// /// Gets or sets the value of the created (ab) /// public DateTime Created { get; set; } /// /// Gets or sets the value of the date (ab) /// public DateTime Date { get; set; } /// /// Gets or sets the value of the id (ab) /// [Key] public Guid Id { get; set; } /// /// Gets or sets the value of the info (ab) /// public string? Info { get; set; } /// /// Gets or sets the value of the not needed (ab) /// public bool NotNeeded { get; set; } /// /// Gets or sets the value of the prospect (ab) /// public Prospect Prospect { get; set; } /// /// Gets or sets the value of the prospect id (ab) /// public Guid ProspectID { get; set; } /// /// Gets or sets the value of the type (ab) /// public InteractionType Type { get; set; } /// /// Gets or sets the value of the user (ab) /// public User User { get; set; } /// /// Gets or sets the value of the user id (ab) /// public Guid UserID { get; set; } #endregion } }