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