Add Range to TournamentService Use DataTable to export CSV DataTable can be ordered on Total
10 lines
170 B
C#
10 lines
170 B
C#
using System;
|
|
|
|
namespace LaDOSE.DTO
|
|
{
|
|
public class TimeRangeDTO
|
|
{
|
|
public DateTime? From { get; set; }
|
|
public DateTime? To { get; set; }
|
|
}
|
|
} |