Skip to content
This repository was archived by the owner on Jun 21, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions src/GitHub.App/Models/PullRequestModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -141,10 +141,6 @@ public IAccount Assignee
set { assignee = value; this.RaisePropertyChange(); }
}

public ISimpleRepositoryModel Repository { get; }
public IBranch Head { get; }
public IBranch Base { get; }

[return: AllowNull] // nullguard thinks a string.Format can return null. sigh.
public override string ToString()
{
Expand Down
3 changes: 0 additions & 3 deletions src/GitHub.Exports/Models/IPullRequestModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,5 @@ public interface IPullRequestModel : ICopyable<IPullRequestModel>,
DateTimeOffset UpdatedAt { get; }
IAccount Author { get; }
IAccount Assignee { get; }
ISimpleRepositoryModel Repository { get; }
IBranch Head { get; }
IBranch Base { get; }
}
}