ant-design-blazor/components/descriptions/IDescriptionsItem.cs
TimChen d68a2dbb87 feat: add Descriptions component (#224)
* feat: add page-header components

* feat: add page-header components

* feat: add page-header components

* docs: some bugs of PageHeader

* refactor: clean code

* feat: add Descriptions component

* feat: add Descriptions component

* feat: add Descriptions component

* feat: add Descriptions component

* feat: add Descriptions component

* fix: demo

Co-authored-by: ElderJames <shunjiey@hotmail.com>
2020-06-15 22:23:08 +08:00

21 lines
399 B
C#

using System;
using System.Collections.Generic;
using System.Text;
using Microsoft.AspNetCore.Components;
using OneOf;
namespace AntDesign
{
public interface IDescriptionsItem
{
[Parameter]
OneOf<string, RenderFragment> Title { get; set; }
[Parameter]
int Span { get; set; }
[Parameter]
RenderFragment ChildContent { get; set; }
}
}