14 lines
269 B
C#
14 lines
269 B
C#
|
using SharedProject.Enums;
|
|||
|
|
|||
|
namespace SharedProject.Models;
|
|||
|
|
|||
|
public class PlaySetting
|
|||
|
{
|
|||
|
public uint Speed { get; set; }
|
|||
|
|
|||
|
public bool IsVanishOn { get; set; }
|
|||
|
|
|||
|
public bool IsInverseOn { get; set; }
|
|||
|
|
|||
|
public RandomType RandomType { get; set; }
|
|||
|
}
|