mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-07-21 01:59:49 +00:00
12 lines
392 B
C#
12 lines
392 B
C#
using Microsoft.AspNetCore.Components;
|
|
using TrailBlazr.Views;
|
|
|
|
namespace Daybreak.Views;
|
|
public abstract class BuildTemplateViewBase<TView, TViewModel> : ViewBase<TView, TViewModel>
|
|
where TView : BuildTemplateViewBase<TView, TViewModel>
|
|
where TViewModel : BuildTemplateViewModelBase<TViewModel, TView>
|
|
{
|
|
[Parameter]
|
|
public string BuildName { get; set; } = string.Empty;
|
|
}
|