9 lines
156 B
C#
9 lines
156 B
C#
namespace RankingService
|
|
{
|
|
public class Competitor
|
|
{
|
|
public string? Name { get; set; }
|
|
public string? Time { get; set; }
|
|
}
|
|
}
|