EditableLinkGroup.razor.cs 462 B

123456789101112131415161718192021
  1. using Microsoft.AspNetCore.Components;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Threading.Tasks;
  6. namespace wispro.sp.web.Components
  7. {
  8. public class EditableLink
  9. {
  10. public string Title { get; set; }
  11. public string Href { get; set; }
  12. public string Id { get; set; }
  13. }
  14. public partial class EditableLinkGroup
  15. {
  16. [Parameter] public EditableLink[] Links { get; set; }
  17. }
  18. }