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

26 lines
No EOL
612 B
C#

// WingsEmu
//
// Developed by NosWings Team
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using PhoenixLib.DAL;
namespace WingsAPI.Data.Drops;
public class DropDTO : IIntDto
{
public int Amount { get; set; }
public int DropChance { get; set; }
public int ItemVNum { get; set; }
public int? MapId { get; set; }
public int? MonsterVNum { get; set; }
public int? RaceType { get; set; }
public int? RaceSubType { get; set; }
[Key]
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
public int Id { get; set; }
}