StarSkyPresenter/Objects.cs

15 lines
254 B
C#

using System.Collections;
using System.Collections.Generic;
namespace StarSkyPresenter;
public class Objects
{
public List<StarConfig> stars { get; set; }
public string background { get; set; }
public float frameRate { get; set; }
}