pr1/presence/domain/Models/ResponseModels/GroupResponse.cs

15 lines
342 B
C#
Raw Normal View History

2024-12-19 17:36:57 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace domain.Models.ResponseModels
2024-11-17 16:24:01 +00:00
{
2024-12-19 17:36:57 +00:00
public class GroupResponse
{
public int Id { get; set; }
public string Name { get; set; }
public IEnumerable<UserResponse> User { get; set; }
}
2024-11-17 16:24:01 +00:00
}