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