15 lines
260 B
C#
15 lines
260 B
C#
|
using System;
|
|||
|
|
|||
|
namespace Selector.Web;
|
|||
|
|
|||
|
public class PastParams
|
|||
|
{
|
|||
|
public string Track { get; set; }
|
|||
|
public string Album { get; set; }
|
|||
|
public string Artist { get; set; }
|
|||
|
|
|||
|
public string From { get; set; }
|
|||
|
public string To { get; set; }
|
|||
|
}
|
|||
|
|