RSND/RSND/Core/Querying/BaseQuery.cs

14 lines
245 B
C#
Raw Normal View History

2022-06-01 22:24:42 +00:00
namespace RSND.Core.Querying;
/// <summary>
/// The required values that any query must have.
/// </summary>
public class BaseQuery
{
public BaseQuery(string type)
{
Type = type;
}
public string Type { get; set; }
}