To apply a custom label to the model field, Display attribute can be applied.
Here the default label of the Active field appears as “Active” however if we want to change the label in the View, we can change it with the help of Display attribute
Simple code :
[Display(Name = "Is Active?")]
public bool Active { get; set; }