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.
31 lines
1022 B
C#
31 lines
1022 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Expedience.Infrasctructure.Models
|
|
{
|
|
public class TopXCompletionResult
|
|
{
|
|
public int Rank { get; set; }
|
|
public Guid Id { get; set; }
|
|
public int TerritoryId { get; set; }
|
|
public string PlaceName { get; set; }
|
|
public string ContentName { get; set; }
|
|
public DateTime StartTime { get; set; }
|
|
public DateTime EndTime { get; set; }
|
|
public TimeSpan Duration { get; set; }
|
|
public int Level { get; set; }
|
|
public string ContentType { get; set; }
|
|
public string Expac { get; set; }
|
|
public DateTime UploadedAt { get; set; }
|
|
public int UserId { get; set; }
|
|
public string Username { get; set; }
|
|
public int WorldId { get; set; }
|
|
public string Datacenter { get; set; }
|
|
public string PluginVersion { get; set; }
|
|
public string GameVersion { get; set; }
|
|
}
|
|
}
|