18 lines
347 B
C#
18 lines
347 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Entities.DTO
|
|
{
|
|
public record UpdateKeyPointDto
|
|
{
|
|
[Required]
|
|
public Guid Id { get; init; }
|
|
|
|
[Required]
|
|
[StringLength(255)]
|
|
public string Key { get; init; } = string.Empty;
|
|
|
|
[Required]
|
|
public Guid LessonID { get; init; }
|
|
}
|
|
}
|