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.

28 lines
1005 B
C#

namespace Expedience.Infrastructure.Models
{
public class DutyCompletionResult
{
public Guid Id { get; set; }
public int UserId { get; set; }
public int TerritoryId { get; set; }
public int ContentId { 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; }
public DateTime UploadedAt { get; set; }
}
}