{"id":23673735,"url":"https://github.com/krlan2789/land-property-server","last_synced_at":"2026-05-05T23:31:45.059Z","repository":{"id":269734312,"uuid":"907799668","full_name":"krlan2789/Land-Property-Server","owner":"krlan2789","description":"ASP.NET Project - REST API for Land Property Project","archived":false,"fork":false,"pushed_at":"2025-04-23T18:53:25.000Z","size":124,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-05-21T10:49:14.000Z","etag":null,"topics":["asp-net-core","azure-app-service","csharp","entity-framework-core","openapi","rest-api","sqlite"],"latest_commit_sha":null,"homepage":"https://land-property.azurewebsites.net/api/docs/v1","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/krlan2789.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2024-12-24T12:19:32.000Z","updated_at":"2025-04-24T08:37:10.000Z","dependencies_parsed_at":"2025-05-22T09:46:16.613Z","dependency_job_id":null,"html_url":"https://github.com/krlan2789/Land-Property-Server","commit_stats":null,"previous_names":["krlan2789/land-property-server"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/krlan2789/Land-Property-Server","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/krlan2789%2FLand-Property-Server","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/krlan2789%2FLand-Property-Server/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/krlan2789%2FLand-Property-Server/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/krlan2789%2FLand-Property-Server/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/krlan2789","download_url":"https://codeload.github.com/krlan2789/Land-Property-Server/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/krlan2789%2FLand-Property-Server/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32672538,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-05T11:29:49.557Z","status":"ssl_error","status_checked_at":"2026-05-05T11:29:48.587Z","response_time":54,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5: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":["asp-net-core","azure-app-service","csharp","entity-framework-core","openapi","rest-api","sqlite"],"created_at":"2024-12-29T12:55:44.119Z","updated_at":"2026-05-05T23:31:45.042Z","avatar_url":"https://github.com/krlan2789.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 1. Land-Property-Server\n\nASP.NET Project - REST API for Land Property Project\n\n## 1.1. **Concepts**\n\n### 1.1.1. Roles and Actions\n\n| No  | Buyer                      | Seller                     |\n| --- | -------------------------- | -------------------------- |\n| 1   | Create Account             | Create Account             |\n| 1   | Manage Account Information | Manage Account Information |\n| 2   | Show Active Ads            | Register Ads               |\n| 3   | Favorite Ads               | Manage Ads                 |\n| 4   | Communication with Seller  | Communication with Buyer   |\n| 5   | -                          |                            |\n|     |                            |                            |\n\n## 1.2. **Database**\n\n### 1.2.1. Table Users\n\n|     | Name         | Type     |                                   |\n| --- | ------------ | -------- | --------------------------------- |\n| PK  | **Id**       | int      | Auto-increament                   |\n|     | Name         | string   | Length(255)                       |\n|     | Email        | string   | Length(128), unique               |\n|     | PasswordHash | string   | Length(255)                       |\n|     | PhoneNumber  | string   | Length(32), unique                |\n|     | Address      | string   | nullable                          |\n|     | CreatedAt    | DateTime | Length(20), 'yyyy-MM-dd HH:mm:ss' |\n|     | UpdatedAt    | DateTime | Length(20), 'yyyy-MM-dd HH:mm:ss' |\n\n### 1.2.2. Table UserSessionLogs\n\n|     | Name       | Type   |                                   |\n| --- | ---------- | ------ | --------------------------------- |\n| PK  | **Id**     | int    | Auto-increament                   |\n|     | IpAddress  | string | Length(64), nullable              |\n|     | UserAgent  | string | nullable                          |\n|     | Action     | string | nullable                          |\n| FK  | **UserId** | int    |                                   |\n|     | CreatedAt  | string | Length(20), 'yyyy-MM-dd HH:mm:ss' |\n\n### 1.2.3. Table PropertyTypes\n\n|     | Name        | Type   |                                   |\n| --- | ----------- | ------ | --------------------------------- |\n| PK  | **Id**      | int    | Auto-increament                   |\n|     | Slug        | string | Length(64), unique                |\n|     | Name        | string | Length(64)                        |\n|     | Description | string | nullable                          |\n|     | CreatedAt   | string | Length(20), 'yyyy-MM-dd HH:mm:ss' |\n|     | UpdatedAt   | string | Length(20), 'yyyy-MM-dd HH:mm:ss' |\n\n### 1.2.4. Table AdvertisementTypes\n\n|     | Name        | Type   |                                   |\n| --- | ----------- | ------ | --------------------------------- |\n| PK  | **Id**      | int    | Auto-increament                   |\n|     | Slug        | string | Length(64), unique                |\n|     | Name        | string | Length(64)                        |\n|     | Description | string | nullable                          |\n|     | CreatedAt   | string | Length(20), 'yyyy-MM-dd HH:mm:ss' |\n|     | UpdatedAt   | string | Length(20), 'yyyy-MM-dd HH:mm:ss' |\n\n### 1.2.5. Table Properties\n\n|     | Name                    | Type     |                                   |\n| --- | ----------------------- | -------- | --------------------------------- |\n| PK  | **Id**                  | int      | Auto-increament                   |\n|     | Slug                    | string   | Length(512), unique               |\n|     | Title                   | string   | Length(255)                       |\n|     | Address                 | string   |                                   |\n|     | BuildingArea            | float    |                                   |\n|     | LandArea                | Vector2  |                                   |\n|     | Bedroom                 | byte     |                                   |\n|     | Bathroom                | byte     |                                   |\n|     | Floor                   | byte     |                                   |\n|     | Price                   | ulong    |                                   |\n|     | Description             | string   | nullable                          |\n|     | Images                  | string[] | nullable                          |\n| FK  | **UserId**              | int      |                                   |\n| FK  | **BuildingTypeId**      | int      |                                   |\n| FK  | **AdvertisementTypeId** | int      |                                   |\n|     | CreatedAt               | string   | Length(20), 'yyyy-MM-dd HH:mm:ss' |\n|     | UpdatedAt               | string   | Length(20), 'yyyy-MM-dd HH:mm:ss' |\n\n### 1.2.6. Table PropertyViewLogs\n\n|     | Name           | Type   |                                   |\n| --- | -------------- | ------ | --------------------------------- |\n| PK  | **Id**         | int    | Auto-increament                   |\n| FK  | **PropertyId** | int    |                                   |\n| FK  | **UserId**     | int    |                                   |\n|     | CreatedAt      | string | Length(20), 'yyyy-MM-dd HH:mm:ss' |\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkrlan2789%2Fland-property-server","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkrlan2789%2Fland-property-server","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkrlan2789%2Fland-property-server/lists"}