feat(Documents) Notes/Docs page improvements and warning cleanup
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace Model.Notes;
|
||||
|
||||
public class NoteConnectionModel
|
||||
{
|
||||
[Key] public int Id { get; set; } = 1;
|
||||
public int ParentId { get; set; } = 1;
|
||||
public int ChildId { get; set; } = 1;
|
||||
}
|
||||
Reference in New Issue
Block a user