mirror of
https://github.com/Steffo99/better-tee.git
synced 2024-11-22 07:14:19 +00:00
12 lines
No EOL
237 B
C#
12 lines
No EOL
237 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
|
|
[Serializable]
|
|
public class TypingResults : ActResults {
|
|
public string[] submissions;
|
|
|
|
public TypingResults(string[] submissions) {
|
|
this.submissions = submissions;
|
|
}
|
|
} |