ant-design-blazor/components/comment/Comment.razor.cs
TimChen cbc5e823f0 refactor(module: all): separate the normal and template parameters (#552)
* fix: card title template

* fix: template:badge,collapse

* fix: comment refactor template

* fix: ribbonTests

* feat: descriptions refactor template

* feat: empty refactor template

* feat: list refactor template

* feat: menu refactor template

* feat: confirm add question icon

* feat: pageHeader and statistic refactor template

* feat: popconfirm refactor template

* feat: popver refactor template

* feat: result refactor template

* feat: step refactor template

* feat: switch refactor template

* feat: table refactor template

* feat: transfer refactor template

* feat: optimized code

* fix: pageheader

* refactor(module: empty): remove empty image constant images

Co-authored-by: ElderJames <shunjiey@hotmail.com>
2020-09-16 13:58:16 +08:00

50 lines
1.2 KiB
C#

using System;
using System.Collections.Generic;
using System.Text;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Components;
using OneOf;
namespace AntDesign
{
public partial class Comment : AntDomComponentBase
{
[Parameter]
public string Author { get; set; }
[Parameter]
public RenderFragment AuthorTemplate { get; set; }
[Parameter]
public string Avatar { get; set; }
[Parameter]
public RenderFragment AvatarTemplate { get; set; }
[Parameter]
public string Content { get; set; }
[Parameter]
public RenderFragment ContentTemplate { get; set; }
[Parameter]
public RenderFragment ChildContent { get; set; }
[Parameter]
public string Datetime { get; set; }
[Parameter]
public RenderFragment DatetimeTemplate { get; set; }
[Parameter]
public IList<RenderFragment> Actions { get; set; } = new List<RenderFragment>();
protected override void OnInitialized()
{
base.OnInitialized();
this.ClassMapper.Clear()
.Add("ant-comment");
}
}
}