9 lines
No EOL
177 B
C#
9 lines
No EOL
177 B
C#
using System;
|
|
|
|
namespace WingsEmu.DTOs.Quests;
|
|
|
|
public class CharacterQuestCompletedDto
|
|
{
|
|
public int QuestId { get; set; }
|
|
public DateTime CompletionDate { get; set; }
|
|
} |