You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.1 KiB
37 lines
1.1 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace PhilExampleCrawler.DataBase.Models
|
|
{
|
|
public class DB_CrawlSession
|
|
{
|
|
public int ID { get; }
|
|
public int UserID { get; }
|
|
public string Keywords { get; }
|
|
public string LocationText { get; }
|
|
public int CategoryID { get; }
|
|
public int RadiusKM { get; }
|
|
public int MinPrice { get; }
|
|
public int MaxPrice { get; }
|
|
public bool IsPrivate { get; }
|
|
public bool IsCommercial { get; }
|
|
|
|
public DB_CrawlSession(int id, int user_id, string keywords, string location_text, int category_id, int radius_km,
|
|
int minPrice, int maxPrice, bool isPrivate, bool isCommerial)
|
|
{
|
|
ID = id;
|
|
UserID = user_id;
|
|
Keywords = keywords;
|
|
LocationText = location_text;
|
|
CategoryID = category_id;
|
|
RadiusKM = radius_km;
|
|
MinPrice = minPrice;
|
|
MaxPrice = maxPrice;
|
|
IsPrivate = isPrivate;
|
|
IsCommercial = isCommerial;
|
|
}
|
|
}
|
|
} |