21 lines
412 B
C#
21 lines
412 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BlazorWASM.Shared
|
|
{
|
|
public class ContentButton
|
|
{
|
|
public string Text { get; set; }
|
|
public string NavUrl { get; set; }
|
|
|
|
public ContentButton(string text, string navUrl) {
|
|
Text = text;
|
|
NavUrl = navUrl;
|
|
}
|
|
|
|
}
|
|
}
|