You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
857 B
C#

namespace Expedience.Api.Db.Models
{
public class DutyCompletionResult
{
public Guid Id { get; set; }
public int UserId { get; set; }
public int DutyId { get; set; }
public bool HasEcho { get; set; }
public bool IsUnrestricted { get; set; }
public bool HasNpcMembers { get; set; }
public DateTime StartTime { get; set; }
public DateTime EndTime { get; set; }
public int Hours { get; set; }
public int Minutes { get; set; }
public int Seconds { get; set; }
public int Milliseconds { get; set; }
public string GameVersion { get; set; }
public string PluginVersion { get; set; }
public string Language { get; set; }
public List<DutyMember> DutyMembers { get; set; }
public string DataCenter { get; set; }
}
}