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; } } }