This commit is contained in:
zel
2025-02-20 16:57:12 +08:00
parent 74772e285e
commit aa111836c4
66 changed files with 75 additions and 388 deletions

View File

@@ -7,8 +7,10 @@ namespace ZelWiki.Models.ViewModels.Page
public int Id { get; set; }
[Required]
[Display(Name="标题")]
public string Name { get; set; } = string.Empty;
public string Navigation { get; set; } = string.Empty;
[Display(Name = "描述")]
public string? Description { get; set; } = string.Empty;
public string? Body { get; set; } = string.Empty;
}