Refactor to introduce Govor.Application and Govor.Contracts layers

Moved service implementations and interfaces from Govor.API and Govor.Core to new Govor.Application and Govor.Contracts projects. Updated namespaces and references throughout the solution. Added custom exception classes for authentication and invite services. Adjusted dependency injection and project references to use the new structure. This refactor improves separation of concerns and prepares the codebase for better maintainability and scalability.
This commit is contained in:
Artemy
2025-06-25 15:16:14 +07:00
parent 5693190b1c
commit 4f3f4ec066
41 changed files with 126 additions and 75 deletions
+13
View File
@@ -0,0 +1,13 @@
namespace Govor.Contracts.DTOs;
public class InvitationDto
{
public Guid Id { get; set; }
public bool IsAdmin { get; set; }
public bool IsActive { get; set; }
public string Code {get; set;}
public DateTime CreatedAt { get; set; }
public DateTime EndAt { get; set; }
public int MaxParticipants { get; set; }
public string Description { get; set; }
}