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