Added front-end ReactApp, with basic CRUD functionality for Bookmark entries
This commit is contained in:
@ -15,6 +15,6 @@ namespace YABA.Common.DTOs.Bookmarks
|
||||
public string? Note { get; set; }
|
||||
public bool IsHidden { get; set; }
|
||||
public string Url { get; set; }
|
||||
public IList<TagSummaryDTO> Tags { get; set; } = new List<TagSummaryDTO>();
|
||||
public List<TagSummaryDTO>? Tags { get; set; } = new List<TagSummaryDTO>();
|
||||
}
|
||||
}
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using YABA.Common.Interfaces;
|
||||
|
||||
namespace YABA.Common.DTOs.Bookmarks
|
||||
@ -9,6 +10,7 @@ namespace YABA.Common.DTOs.Bookmarks
|
||||
public string? Description { get; set; }
|
||||
public string? Note { get; set; }
|
||||
public bool IsHidden { get; set; }
|
||||
public IEnumerable<string>? Tags { get; set; }
|
||||
|
||||
[Required]
|
||||
public string Url { get; set; }
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using YABA.Common.Interfaces;
|
||||
|
||||
namespace YABA.Common.DTOs.Bookmarks
|
||||
@ -10,5 +11,6 @@ namespace YABA.Common.DTOs.Bookmarks
|
||||
public string? Note { get; set; }
|
||||
public bool IsHidden { get; set; }
|
||||
public string? Url { get; set; }
|
||||
public IEnumerable<string>? Tags { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user