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