1 instantiation of Todo
JwtBearerSample (1)
Startup.cs (1)
80
var todo = new
Todo
() { Description = obj.GetProperty("Description").GetString(), Owner = context.User.Identity.Name };
5 references to Todo
JwtBearerSample (5)
Startup.cs (5)
22
public IList<
Todo
> Todos { get; } = new List<
Todo
>();
80
var
todo = new Todo() { Description = obj.GetProperty("Description").GetString(), Owner = context.User.Identity.Name };
96
private void Serialize(IList<
Todo
> todos, IBufferWriter<byte> output)
100
foreach (
var
todo in todos)