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

15 lines
No EOL
377 B
C#

using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace WingsAPI.Data.ActDesc;
public class ActDescDTO
{
[Key]
[DatabaseGenerated(DatabaseGeneratedOption.None)]
public byte Act { get; set; }
public byte SubAct { get; set; }
public byte TsAmount { get; set; }
public string ActName { get; set; }
}