123456789101112131415161718192021 |
- using Microsoft.AspNetCore.Components;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- namespace wispro.sp.web.Components
- {
- public class EditableLink
- {
- public string Title { get; set; }
- public string Href { get; set; }
- public string Id { get; set; }
- }
- public partial class EditableLinkGroup
- {
- [Parameter] public EditableLink[] Links { get; set; }
- }
- }
|