16 lines
349 B
C#
16 lines
349 B
C#
using data.domain.Models;
|
|
using data.Exceptions;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace data.RemoteData.RemoteDataBase.DAO;
|
|
|
|
public class AllPresence
|
|
{
|
|
public required string GroupName{ get; set; }
|
|
public required UsersForPresence Users { get; set; }
|
|
}
|