mirror of
https://github.com/docker/awesome-compose.git
synced 2025-04-28 23:31:47 +02:00
Added backend
Signed-off-by: GitHub <noreply@github.com>
This commit is contained in:
parent
c4c4136352
commit
718df2a62d
8 changed files with 473 additions and 22 deletions
13
react-aspnet-mongodb/backend/ToDo.cs
Normal file
13
react-aspnet-mongodb/backend/ToDo.cs
Normal file
|
@ -0,0 +1,13 @@
|
|||
using MongoDB.Bson;
|
||||
using MongoDB.Bson.Serialization.Attributes;
|
||||
|
||||
namespace Models;
|
||||
|
||||
public class ToDo
|
||||
{
|
||||
[BsonId]
|
||||
[BsonRepresentation(BsonType.ObjectId)]
|
||||
public string Id { get; set; }
|
||||
|
||||
public string Description { get; set; }
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue