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