15 lines
300 B
C#
15 lines
300 B
C#
using QtCNETAPI.Dtos.User;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace QtCNETAPI.Events
|
|
{
|
|
public class UserStatusUpdatedEventArgs : EventArgs
|
|
{
|
|
public UserStatusDto? StatusDto { get; set; }
|
|
}
|
|
}
|