1
0
Fork 0
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.

31 lines
866 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PhilExampleCrawler.DataBase.Models
{
public class DB_User
{
public int ID { get; }
public string AuthCode { get; }
public string Phone { get; }
public bool Optin_Telegram { get; }
public bool? HasTelegram { get; }
public DateTime CreateDate { get; }
public List<DB_CrawlSession> CrawlSessions { get; } = new();
internal DB_User(int id, string auth_code, string phone, bool optin_telegram, bool? has_telegram, DateTime createDate)
{
ID = id;
AuthCode = auth_code;
Phone = phone;
Optin_Telegram = optin_telegram;
HasTelegram = has_telegram;
CreateDate = createDate;
}
}
}