feature(BuildCalc) Added reset button, can change micro delay, and can alter timing interval again
This commit is contained in:
@@ -1,35 +1,37 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
using Model.Doc;
|
||||
|
||||
namespace Model.Notes;
|
||||
|
||||
public class NoteContentModel
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
|
||||
public int? ParentId { get; set; } = null;
|
||||
|
||||
|
||||
public int? NoteSectionModelId { get; set; } = null;
|
||||
|
||||
public string Href { get; set; }
|
||||
//public DateTime LastUpdated { get; set; }
|
||||
|
||||
|
||||
public DateTime CreatedDate { get; set; }
|
||||
public DateTime UpdatedDate { get; set; }
|
||||
|
||||
|
||||
public string Name { get; set; }
|
||||
|
||||
|
||||
public string Description { get; set; }
|
||||
public string Content { get; set; }
|
||||
public string IsHidden { get; set; } = "False";
|
||||
public string IsPreAlpha { get; set; } = "True";
|
||||
|
||||
[NotMapped] public virtual ICollection<NoteContentModel> NoteContentModels { get; set; } = new List<NoteContentModel>();
|
||||
|
||||
[NotMapped]
|
||||
public virtual ICollection<NoteContentModel> NoteContentModels { get; set; } = new List<NoteContentModel>();
|
||||
|
||||
[NotMapped] public virtual NoteContentModel Parent { get; set; }
|
||||
[NotMapped] public virtual int PageOrder { get; set; }
|
||||
|
||||
|
||||
|
||||
private string GetLink()
|
||||
{
|
||||
var link = Href;
|
||||
@@ -43,5 +45,4 @@ public class NoteContentModel
|
||||
{
|
||||
return $"notes/{GetLink()}";
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user