diff --git a/blazorbootstrap/Components/Image/Image.razor.cs b/blazorbootstrap/Components/Image/Image.razor.cs index c02d7d87e..c8490dbf6 100644 --- a/blazorbootstrap/Components/Image/Image.razor.cs +++ b/blazorbootstrap/Components/Image/Image.razor.cs @@ -11,37 +11,49 @@ public partial class Image: BlazorBootstrapComponentBase /// /// Gets or sets the alternate text for the image. + /// + /// Default value is . + /// /// - /// - /// Default value is null. - /// + [AddedVersion("3.0.0")] + [DefaultValue(null)] + [Description("Gets or sets the alternate text for the image.")] [Parameter] public string? Alt { get; set; } /// /// Gets or sets the source of the image. + /// + /// Default value is . + /// /// - /// - /// Default value is null. - /// + [AddedVersion("3.0.0")] + [DefaultValue(null)] + [Description("Gets or sets the source of the image.")] [Parameter] public string? Src { get; set; } /// /// Gets or sets a value indicating whether the image is responsive. - /// - /// + /// /// Default value is . - /// + /// + /// + [AddedVersion("3.0.0")] + [DefaultValue(true)] + [Description("Gets or sets a value indicating whether the image is responsive.")] [Parameter] public bool IsResponsive { get; set; } = true; /// /// Makes the image have a rounded 1px border appearance if set to . - /// - /// + /// /// Default value is . - /// + /// + /// + [AddedVersion("3.0.0")] + [DefaultValue(false)] + [Description("Makes the image have a rounded 1px border appearance if set to true.")] [Parameter] public bool IsThumbnail { get; set; }