server-master/srcs/WingsAPI.Data/Titles/TitleDto.cs
2026-02-10 18:21:30 +01:00

22 lines
No EOL
366 B
C#

// WingsEmu
//
// Developed by NosWings Team
using System.ComponentModel.DataAnnotations;
using PhoenixLib.DAL;
namespace WingsEmu.DTOs.Titles;
/// <summary>
/// Titles
/// </summary>
public class TitleDto : IDto
{
[Key]
public long Id { get; set; }
/// <summary>
/// i18n key
/// </summary>
public string Name { get; set; }
}