|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace BLAIzor.Models
|
|
{
|
|
public class MenuItemModel
|
|
{
|
|
public string Name { get; set; } = string.Empty;
|
|
public string Content { get; set; } = string.Empty;
|
|
}
|
|
}
|