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

29 lines
No EOL
680 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 NpcMonsterSkillDTO : IIntDto
{
public int NpcMonsterVNum { get; set; }
public short Rate { get; set; }
public short SkillVNum { get; set; }
/// <summary>
/// Tells whether or not the skill is considered as a basic attack
/// </summary>
public bool IsBasicAttack { get; set; }
public bool IsIgnoringHitChance { get; set; }
[Key]
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
public int Id { get; set; }
}