How to bind input of type time with blazor
问题 Hello i have 2 variables of type int that i would like to bind to the min and max values of an input of type time . How can i do this? I do not know what to place in the bind field since there are 2 different variables. Also there is the min and max attributes. <input type="time" min="@model.min" max="@model.max" bind=?/> What should i put in the bind ? Update On a more thoroughly analysis i decided i will need 2 variables of type Timespan and i will bind these to 2 inputs of type time . 回答1: