using System.ComponentModel.DataAnnotations; using WebApp.Entities; namespace WebApp.DTOs; public record class SkillSummaryDto { public int? SkillId { get; set; } public string? SkillName { get; set; } public SkillSummaryDto() { } };