Database update

This commit is contained in:
Andre Beging
2022-04-11 15:50:09 +02:00
parent 208ea99a42
commit 1b2c6c4062
13 changed files with 232 additions and 7 deletions

View File

@@ -38,5 +38,15 @@ namespace FoodsharingSiegen.Contracts.Entity
}
#endregion
#region Public Method Clone
/// <summary>
/// Clones this instance (a. beging, 11.04.2022)
/// </summary>
/// <returns>The user</returns>
public User Clone() => (User) MemberwiseClone();
#endregion
}
}