1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 13:27:25 +08:00
osu-lazer/osu.Game/Overlays/Home/Friends/FriendsBundle.cs

26 lines
566 B
C#
Raw Normal View History

// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
namespace osu.Game.Overlays.Home.Friends
{
public class FriendsBundle
{
public FriendsOnlineStatus Status { get; }
2020-03-04 05:31:06 +08:00
public int Count { get; }
2020-03-04 05:31:06 +08:00
public FriendsBundle(FriendsOnlineStatus status, int count)
{
Status = status;
2020-03-04 05:31:06 +08:00
Count = count;
}
}
public enum FriendsOnlineStatus
{
All,
Online,
Offline
}
}