16 lines
358 B
C#
16 lines
358 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using SQLite4Unity3d;
|
|
|
|
public class pretest
|
|
{
|
|
[PrimaryKey, AutoIncrement]
|
|
public int pretestId { get; set; }
|
|
|
|
//public int userId { get; set; }
|
|
public int score { get; set; }
|
|
public string kodeLogin { get; set; }
|
|
public string completedAt { get; set; }
|
|
}
|