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

21 lines
No EOL
372 B
C#

// WingsEmu
//
// Developed by NosWings Team
using System;
using ProtoBuf;
namespace WingsEmu.DTOs.Bonus;
[ProtoContract]
public class CharacterStaticBonusDto
{
[ProtoMember(1)]
public DateTime? DateEnd { get; set; }
[ProtoMember(2)]
public StaticBonusType StaticBonusType { get; set; }
[ProtoMember(3)]
public int ItemVnum { get; set; }
}