13 lines
No EOL
264 B
C#
13 lines
No EOL
264 B
C#
using Website.Data.States;
|
|
|
|
namespace Website.Models {
|
|
public class GitRepository {
|
|
public GitRepository(GitRepositoryState state) {
|
|
Name = state.name;
|
|
Url = state.html_url;
|
|
}
|
|
|
|
public string Name { get; set; }
|
|
public string Url { get; set; }
|
|
}
|
|
} |