decePubClient/Models/Mention.cs

11 lines
225 B
C#
Raw Normal View History

2022-02-14 01:51:52 +01:00
namespace decePubClient.Models
{
public class Mention
{
public string DisplayName { get; set; }
public string UserName { get; set; }
public string UserId { get; set; }
public string ProfileUrl { get; set; }
}
}