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.
26 lines
916 B
C#
26 lines
916 B
C#
namespace Expedience.Infrastructure.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 IsMinILevel { 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 Lang { get; set; }
|
|
public List<DutyMember> DutyMembers { get; set; }
|
|
public string DataCenter { get; set; }
|
|
|
|
}
|
|
}
|