mirror of
https://github.com/Govor-team/Govor.git
synced 2026-07-21 19:54:55 +00:00
6d1c53beeb
Large refactor that renames/moves core types into a new Govor.Domain surface and reorganizes the Application layer. Models, configurations, migrations and many files moved from Govor.Core/Govor.Data to Govor.Domain; numerous Application services, interfaces and implementations were relocated or added (authentication, friends, messages, medias, push notifications, user sessions, storage, synching, private chats, etc.). Tests updated to use Govor.Domain namespaces and adjusted project references (removed Govor.Data reference from API tests). Also updated API, Hub and mapping code and project files to reflect the new structure and naming. This is primarily a codebase-wide namespace and module reorganization to establish a Domain project and restructure application services.
17 lines
534 B
C#
17 lines
534 B
C#
using Govor.Domain.Models.Users;
|
|
|
|
namespace Govor.Domain.Models;
|
|
|
|
public class GroupInvitation
|
|
{
|
|
public Guid Id { get; set; }
|
|
public Guid GroupId { get; set; }
|
|
public Guid UserMakerId { get; set; }
|
|
public string InvitationCode { get; set; }
|
|
public string Description {get; set;}
|
|
public DateTime EndDate { get; set; }
|
|
public DateTime CreatedAt { get; set; }
|
|
public int MaxParticipants { get; set; }
|
|
public List<Guid> GroupMemberships { get; set; } = new();
|
|
public User? UserMaker { get; set; }
|
|
} |