mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-07-24 03:56:30 +00:00
10 lines
271 B
C#
10 lines
271 B
C#
using TrailBlazr.Views;
|
|
|
|
namespace Daybreak.Views;
|
|
public abstract class ElevationViewBase<TView, TViewModel>
|
|
: ViewBase<TView, TViewModel>
|
|
where TViewModel : ElevationViewModelBase<TViewModel, TView>
|
|
where TView : ElevationViewBase<TView, TViewModel>
|
|
{
|
|
}
|