21 lines
No EOL
488 B
C#
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; }
|
|
} |