using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Diagnostics.CodeAnalysis; using System.Text; namespace Common.Dtos.Specialization; public class SpecializationDto { public int Id { get; set; } public string? Name { get; set; } public string? ShortName { get; set; } }