mirror of
https://github.com/osukey/osukey.git
synced 2025-05-16 19:17:18 +09:00
20 lines
458 B
C#
20 lines
458 B
C#
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using System;
|
|
using osu.Game.IO.Serialization;
|
|
|
|
namespace osu.Game.Overlays.Changelog
|
|
{
|
|
[Serializable]
|
|
public class ReleaseStreamInfo : IJsonSerializable
|
|
{
|
|
public string Name;
|
|
public string DisplayVersion;
|
|
|
|
public float Users;
|
|
|
|
public bool IsFeatured;
|
|
}
|
|
}
|