2020-03-03 22:37:01 +08:00
|
|
|
|
// 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.
|
|
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
|
#nullable disable
|
|
|
|
|
|
2020-03-16 14:42:21 +08:00
|
|
|
|
namespace osu.Game.Overlays.Dashboard.Friends
|
2020-03-03 22:37:01 +08:00
|
|
|
|
{
|
2020-03-23 09:47:27 +08:00
|
|
|
|
public class FriendStream
|
2020-03-03 22:37:01 +08:00
|
|
|
|
{
|
2020-03-23 09:47:27 +08:00
|
|
|
|
public OnlineStatus Status { get; }
|
2020-03-03 22:37:01 +08:00
|
|
|
|
|
2020-03-23 01:13:54 +08:00
|
|
|
|
public int Count { get; }
|
2020-03-03 22:37:01 +08:00
|
|
|
|
|
2020-03-23 09:47:27 +08:00
|
|
|
|
public FriendStream(OnlineStatus status, int count)
|
2020-03-03 22:37:01 +08:00
|
|
|
|
{
|
|
|
|
|
Status = status;
|
2020-03-23 01:13:54 +08:00
|
|
|
|
Count = count;
|
2020-03-03 22:37:01 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|