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

21 lines
No EOL
488 B
C#

// WingsEmu
//
// Developed by NosWings Team
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using PhoenixLib.DAL;
namespace WingsEmu.DTOs.Skills;
public class ComboDTO : IIntDto
{
public short Animation { get; set; }
public short Effect { get; set; }
public short Hit { get; set; }
public int SkillVNum { get; set; }
[Key]
[DatabaseGenerated(DatabaseGeneratedOption.None)]
public int Id { get; set; }
}