重构项目结构,移除Assignment相关功能,优化Submission模块
Some checks failed
TechAct / explore-gitea-actions (push) Failing after 12s
Some checks failed
TechAct / explore-gitea-actions (push) Failing after 12s
This commit is contained in:
14
Entities/DTO/KeyPoint/CreateKeyPointDto.cs
Normal file
14
Entities/DTO/KeyPoint/CreateKeyPointDto.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace Entities.DTO
|
||||
{
|
||||
public record CreateKeyPointDto
|
||||
{
|
||||
[Required]
|
||||
[StringLength(255)]
|
||||
public string Key { get; init; } = string.Empty;
|
||||
|
||||
[Required]
|
||||
public Guid LessonID { get; init; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user