{"id":20410447,"url":"https://github.com/alex-titarenko/mvvm","last_synced_at":"2026-04-13T11:01:31.240Z","repository":{"id":28070340,"uuid":"31567437","full_name":"alex-titarenko/mvvm","owner":"alex-titarenko","description":"Lightweight MVVM framework (.NET Standard).","archived":false,"fork":false,"pushed_at":"2021-02-10T06:00:58.000Z","size":273,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-03-11T17:45:38.509Z","etag":null,"topics":["c-sharp","lightweight-mvvm-framework","mvvm","mvvm-framework","net-standard","nuget","wpf"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/alex-titarenko.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2015-03-02T22:43:02.000Z","updated_at":"2021-02-10T06:01:01.000Z","dependencies_parsed_at":"2022-09-13T19:31:10.611Z","dependency_job_id":null,"html_url":"https://github.com/alex-titarenko/mvvm","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/alex-titarenko/mvvm","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alex-titarenko%2Fmvvm","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alex-titarenko%2Fmvvm/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alex-titarenko%2Fmvvm/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alex-titarenko%2Fmvvm/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/alex-titarenko","download_url":"https://codeload.github.com/alex-titarenko/mvvm/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alex-titarenko%2Fmvvm/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31749763,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-13T09:16:15.125Z","status":"ssl_error","status_checked_at":"2026-04-13T09:16:05.023Z","response_time":93,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["c-sharp","lightweight-mvvm-framework","mvvm","mvvm-framework","net-standard","nuget","wpf"],"created_at":"2024-11-15T05:46:26.556Z","updated_at":"2026-04-13T11:01:31.224Z","avatar_url":"https://github.com/alex-titarenko.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# TAlex.Mvvm\n![Build](https://github.com/alex-titarenko/mvvm/workflows/Build/badge.svg?branch=main)\n\nLightweight MVVM framework for C#.\n\n## Structure\n* **TAlex.Mvvm** - provides base view model and relay command classes.\n* **TAlex.Mvvm.Wpf** - WPF depended implementation of message service, application class extensions and some commands.\n\n## Example of usage\nDefining view model:\n```C#\n// View Model\npublic class TestViewModel : ViewModelBase\n{\n    private int _intProp;\n    private string _strProp;\n\n\n    public int IntegerProperty\n    {\n        get { return _intProp; }\n        set { Set(ref _intProp, value); }\n    }\n\n    public string StringProperty\n    {\n        get { return _strProp; }\n        set { Set(() =\u003e StringProperty, ref _strProp, value); }\n    }\n}\n\n// PropertyChanged event\nvar target = new TestViewModel();\nstring actualPropName = null;\ntarget.PropertyChanged += (e, a) =\u003e { actualPropName = a.PropertyName; };\n\ntarget.IntegerProperty = 3;\n\nConsole.WriteLine(actualPropName);\n```\n\n## Get it on NuGet!\n\n    Install-Package TAlex.Mvvm\n    Install-Package TAlex.Mvvm.Wpf\n\n## License\nTAlex.Common is under the [MIT license](LICENSE.md).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falex-titarenko%2Fmvvm","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Falex-titarenko%2Fmvvm","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falex-titarenko%2Fmvvm/lists"}