mirror of
https://github.com/boudji-ludwig-pett/cnam-geometry-dash.git
synced 2025-04-17 18:56:18 +02:00
17 lines
331 B
C#
17 lines
331 B
C#
using System.Runtime.Serialization;
|
|
|
|
[DataContract]
|
|
public class Level
|
|
{
|
|
[DataMember]
|
|
public string Name { get; set; }
|
|
|
|
[DataMember]
|
|
public string MusicPath { get; set; }
|
|
|
|
[DataMember]
|
|
public int TotalJumps { get; set; }
|
|
public int TotalAttempts { get; set; }
|
|
public int KilledCount { get; set; }
|
|
}
|