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

27 lines
No EOL
573 B
C#

// WingsEmu
//
// Developed by NosWings Team
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using PhoenixLib.DAL;
namespace WingsEmu.DTOs.Maps;
public class MapMonsterDTO : IIntDto
{
public bool IsMoving { get; set; }
public int MapId { get; set; }
public short MapX { get; set; }
public short MapY { get; set; }
public int MonsterVNum { get; set; }
public byte Direction { get; set; }
[Key]
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
public int Id { get; set; }
}