1
0

18 lines
464 B
C#

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