presence_sample_v2/Presence.Api/Response/UserResponse.cs

9 lines
162 B
C#
Raw Normal View History

2024-11-22 12:18:04 +00:00
namespace Presence.Api.Response
{
public class UserResponse
{
public Guid Guid { get; set; }
public string Name { get; set; }
}
}