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