using Flawless.Communication.Shared; namespace Flawless.Communication.Response; public record RepositoryInfoResponse { public required string RepositoryName { get; set; } public required string OwnerUsername { get; set; } public string? Description { get; set; } public required bool IsArchived { get; set; } public required RepositoryRole Role { get; set; } }