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

20 lines
No EOL
523 B
C#

using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using PhoenixLib.DAL;
namespace WingsEmu.DTOs.Quests;
public class TutorialDto : IIntDto
{
public int Data { get; set; }
public int ScriptId { get; set; }
public int ScriptIndex { get; set; }
public TutorialActionType Type { get; set; }
/// <summary>
/// Generated by parser
/// </summary>
[Key]
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
public int Id { get; set; }
}