2022-06-11 01:26:09 +00:00
|
|
|
using MongoDB.Bson;
|
|
|
|
using MongoDB.Bson.Serialization.Attributes;
|
|
|
|
|
|
|
|
namespace Models;
|
|
|
|
|
|
|
|
public class ToDo
|
|
|
|
{
|
|
|
|
[BsonId]
|
|
|
|
[BsonRepresentation(BsonType.ObjectId)]
|
|
|
|
public string Id { get; set; }
|
|
|
|
|
2022-06-13 17:28:56 +00:00
|
|
|
public string Text { get; set; }
|
2022-06-11 01:26:09 +00:00
|
|
|
}
|