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

21 lines
No EOL
471 B
C#

using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using PhoenixLib.DAL;
namespace WingsEmu.DTOs.Mails;
public class AccountMailDto : ILongDto
{
public long AccountId { get; set; }
public DateTime Date { get; set; }
public int ItemVnum { get; set; }
public short Amount { get; set; }
[Key]
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
public long Id { get; set; }
}