Datepicker with DateTime

Hello, I have a problem with the datepicker
When I create a new object of some class with DateTime, this is what I get as a result
image
image

my code

<RadzenDatePicker DateFormat="dd.MM.yyyy" @bind-Value=obj.Date Name="Date" DateRender=@StaticItems.DateRenderSpecial><FooterTemplate><RadzenButton Click=@(arg => obj.Date = DateTime.Today) Text=@BaseText.ButtonCurrentDate /></FooterTemplate></RadzenDatePicker>

is it possible to fix this?

What you see is the default value of DateTime. You need to initialize the Date property to something else.