mirror of
https://github.com/GCMatters/hermes.git
synced 2026-02-04 21:50:12 +01:00
14 lines
250 B
C#
14 lines
250 B
C#
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() { }
|
|
|
|
};
|